Skip to content

Commit 963eb62

Browse files
rtg0795Responsible ML Infra Team
authored and
Responsible ML Infra Team
committed
Allow Python 3.10 for FI&TB
PiperOrigin-RevId: 535359463
1 parent 3b279ed commit 963eb62

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

setup.py

+2-1
Original file line numberDiff line numberDiff line change
@@ -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.8,<3.10',
77+
python_requires='>=3.8,<3.11',
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.8',
9090
'Programming Language :: Python :: 3.9',
91+
'Programming Language :: Python :: 3.10',
9192
'Programming Language :: Python :: 3 :: Only',
9293
'Topic :: Scientific/Engineering',
9394
'Topic :: Scientific/Engineering :: Mathematics',

tensorboard_plugin/setup.py

+2-1
Original file line numberDiff line numberDiff line change
@@ -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.8,<3.10',
82+
python_requires='>=3.8,<3.11',
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.8',
9494
'Programming Language :: Python :: 3.9',
95+
'Programming Language :: Python :: 3.10',
9596
'Programming Language :: Python :: 3 :: Only',
9697
'Topic :: Scientific/Engineering',
9798
'Topic :: Scientific/Engineering :: Mathematics',

0 commit comments

Comments
 (0)