2525from setuptools import setup
2626
2727
28- if sys .version_info >= (3 , 10 ):
29- sys .exit ('Sorry, Python >= 3.10 is not supported' )
28+ if sys .version_info >= (3 , 11 ):
29+ sys .exit ('Sorry, Python >= 3.11 is not supported' )
3030
3131
3232def select_constraint (default , nightly = None , git_master = None ):
@@ -79,7 +79,7 @@ def select_constraint(default, nightly=None, git_master=None):
7979 'fairness_indicators = tensorboard_plugin_fairness_indicators.plugin:FairnessIndicatorsPlugin' ,
8080 ],
8181 },
82- python_requires = '>=3.7 ,<3.10 ' ,
82+ python_requires = '>=3.8 ,<3.11 ' ,
8383 install_requires = REQUIRED_PACKAGES ,
8484 tests_require = REQUIRED_PACKAGES ,
8585 classifiers = [
@@ -90,9 +90,9 @@ def select_constraint(default, nightly=None, git_master=None):
9090 'License :: OSI Approved :: Apache Software License' ,
9191 'Operating System :: OS Independent' ,
9292 'Programming Language :: Python :: 3' ,
93- 'Programming Language :: Python :: 3.7' ,
9493 'Programming Language :: Python :: 3.8' ,
9594 'Programming Language :: Python :: 3.9' ,
95+ 'Programming Language :: Python :: 3.10' ,
9696 'Programming Language :: Python :: 3 :: Only' ,
9797 'Topic :: Scientific/Engineering' ,
9898 'Topic :: Scientific/Engineering :: Mathematics' ,
0 commit comments