Skip to content

Commit 35e0e2e

Browse files
rtg0795Responsible ML Infra Team
authored andcommitted
Internal change
PiperOrigin-RevId: 508133923
1 parent 8451af2 commit 35e0e2e

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

setup.py

Lines changed: 3 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, 10):
25-
sys.exit('Sorry, Python >= 3.10 is not supported')
24+
if sys.version_info >= (3, 11):
25+
sys.exit('Sorry, Python >= 3.11 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.10',
77+
python_requires='>=3.8,<3.11',
7878
install_requires=REQUIRED_PACKAGES,
7979
tests_require=REQUIRED_PACKAGES,
8080
# PyPI package information.

tensorboard_plugin/setup.py

Lines changed: 2 additions & 2 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, 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

3232
def select_constraint(default, nightly=None, git_master=None):

0 commit comments

Comments
 (0)