25
25
from setuptools import setup
26
26
27
27
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' )
30
30
31
31
32
32
def select_constraint (default , nightly = None , git_master = None ):
@@ -79,7 +79,7 @@ def select_constraint(default, nightly=None, git_master=None):
79
79
'fairness_indicators = tensorboard_plugin_fairness_indicators.plugin:FairnessIndicatorsPlugin' ,
80
80
],
81
81
},
82
- python_requires = '>=3.7 ,<3.10 ' ,
82
+ python_requires = '>=3.8 ,<3.11 ' ,
83
83
install_requires = REQUIRED_PACKAGES ,
84
84
tests_require = REQUIRED_PACKAGES ,
85
85
classifiers = [
@@ -90,9 +90,9 @@ def select_constraint(default, nightly=None, git_master=None):
90
90
'License :: OSI Approved :: Apache Software License' ,
91
91
'Operating System :: OS Independent' ,
92
92
'Programming Language :: Python :: 3' ,
93
- 'Programming Language :: Python :: 3.7' ,
94
93
'Programming Language :: Python :: 3.8' ,
95
94
'Programming Language :: Python :: 3.9' ,
95
+ 'Programming Language :: Python :: 3.10' ,
96
96
'Programming Language :: Python :: 3 :: Only' ,
97
97
'Topic :: Scientific/Engineering' ,
98
98
'Topic :: Scientific/Engineering :: Mathematics' ,
0 commit comments