File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change 22import 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
77with open ("README.md" , "r" , encoding = "utf-8" ) as fp :
88 long_description = fp .read ()
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 ,
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 ],
You can’t perform that action at this time.
0 commit comments