Skip to content

Commit 7ca2d2a

Browse files
authored
Update setup.py
1 parent 319242e commit 7ca2d2a

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

setup.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
import sys
33

44
# Ensure the Python version is 3.8 or higher
5-
assert sys.version_info >= (3, 8, 0), "DataTorch requires Python 3.8+"
5+
assert sys.version_info >= (3, 9, 0), "DataTorch requires Python 3.9+"
66

77
with open("README.md", "r", encoding="utf-8") as fp:
88
long_description = fp.read()
@@ -45,7 +45,7 @@
4545
long_description=long_description,
4646
long_description_content_type="text/markdown",
4747
install_requires=requirements,
48-
python_requires=">=3.8",
48+
python_requires=">=3.9",
4949
license="MIT license",
5050
zip_safe=False,
5151
include_package_data=True,
@@ -55,7 +55,7 @@
5555
"Framework :: Pytest",
5656
"Intended Audience :: Developers",
5757
"Natural Language :: English",
58-
"Programming Language :: Python :: 3.8",
58+
"Programming Language :: Python :: 3.9",
5959
"Topic :: Scientific/Engineering :: Artificial Intelligence",
6060
"Topic :: Software Development :: Libraries :: Python Modules",
6161
],

0 commit comments

Comments
 (0)