Skip to content

Commit c0f7c9a

Browse files
kumarpiyushResponsible ML Infra Team
authored and
Responsible ML Infra Team
committed
N/A
PiperOrigin-RevId: 451002623
1 parent 0e109eb commit c0f7c9a

File tree

2 files changed

+8
-6
lines changed

2 files changed

+8
-6
lines changed

setup.py

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -21,8 +21,8 @@
2121
from setuptools import setup
2222

2323

24-
if sys.version_info >= (3, 9):
25-
sys.exit('Sorry, Python >= 3.9 is not supported')
24+
if sys.version_info >= (3, 10):
25+
sys.exit('Sorry, Python >= 3.10 is not supported')
2626

2727

2828
def select_constraint(default, nightly=None, git_master=None):
@@ -74,7 +74,7 @@ def select_constraint(default, nightly=None, git_master=None):
7474
package_data={
7575
'fairness_indicators': ['documentation/*'],
7676
},
77-
python_requires='>=3.7,<3.9',
77+
python_requires='>=3.7,<3.10',
7878
install_requires=REQUIRED_PACKAGES,
7979
tests_require=REQUIRED_PACKAGES,
8080
# PyPI package information.
@@ -88,6 +88,7 @@ def select_constraint(default, nightly=None, git_master=None):
8888
'Programming Language :: Python :: 3',
8989
'Programming Language :: Python :: 3.7',
9090
'Programming Language :: Python :: 3.8',
91+
'Programming Language :: Python :: 3.9',
9192
'Programming Language :: Python :: 3 :: Only',
9293
'Topic :: Scientific/Engineering',
9394
'Topic :: Scientific/Engineering :: Mathematics',

tensorboard_plugin/setup.py

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -25,8 +25,8 @@
2525
from setuptools import setup
2626

2727

28-
if sys.version_info >= (3, 9):
29-
sys.exit('Sorry, Python >= 3.9 is not supported')
28+
if sys.version_info >= (3, 10):
29+
sys.exit('Sorry, Python >= 3.10 is not supported')
3030

3131

3232
def 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.9',
82+
python_requires='>=3.7,<3.10',
8383
install_requires=REQUIRED_PACKAGES,
8484
tests_require=REQUIRED_PACKAGES,
8585
classifiers=[
@@ -92,6 +92,7 @@ def select_constraint(default, nightly=None, git_master=None):
9292
'Programming Language :: Python :: 3',
9393
'Programming Language :: Python :: 3.7',
9494
'Programming Language :: Python :: 3.8',
95+
'Programming Language :: Python :: 3.9',
9596
'Programming Language :: Python :: 3 :: Only',
9697
'Topic :: Scientific/Engineering',
9798
'Topic :: Scientific/Engineering :: Mathematics',

0 commit comments

Comments
 (0)