Skip to content

Commit e8f596c

Browse files
authored
Update setup.py
1 parent db18a0b commit e8f596c

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

setup.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
from setuptools import setup, find_packages
22
import sys
33

4-
# Ensure the Python version is 3.12 or higher
5-
assert sys.version_info >= (3, 12, 0), "DataTorch requires Python 3.12+"
4+
# Ensure the Python version is 3.8 or higher
5+
assert sys.version_info >= (3, 8, 0), "DataTorch requires Python 3.8+"
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.12",
48+
python_requires=">=3.8",
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.12",
58+
"Programming Language :: Python :: 3.8",
5959
"Topic :: Scientific/Engineering :: Artificial Intelligence",
6060
"Topic :: Software Development :: Libraries :: Python Modules",
6161
],

0 commit comments

Comments
 (0)