Skip to content

Commit

Permalink
Internal change
Browse files Browse the repository at this point in the history
PiperOrigin-RevId: 508133923
  • Loading branch information
rtg0795 authored and Responsible ML Infra Team committed Feb 8, 2023
1 parent 8451af2 commit d635e8e
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 7 deletions.
7 changes: 4 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,8 @@
from setuptools import setup


if sys.version_info >= (3, 10):
sys.exit('Sorry, Python >= 3.10 is not supported')
if sys.version_info >= (3, 11):
sys.exit('Sorry, Python >= 3.11 is not supported')


def select_constraint(default, nightly=None, git_master=None):
Expand Down Expand Up @@ -74,7 +74,7 @@ def select_constraint(default, nightly=None, git_master=None):
package_data={
'fairness_indicators': ['documentation/*'],
},
python_requires='>=3.7,<3.10',
python_requires='>=3.8,<3.11',
install_requires=REQUIRED_PACKAGES,
tests_require=REQUIRED_PACKAGES,
# PyPI package information.
Expand All @@ -88,6 +88,7 @@ def select_constraint(default, nightly=None, git_master=None):
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3 :: Only',
'Topic :: Scientific/Engineering',
'Topic :: Scientific/Engineering :: Mathematics',
Expand Down
8 changes: 4 additions & 4 deletions tensorboard_plugin/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,8 @@
from setuptools import setup


if sys.version_info >= (3, 10):
sys.exit('Sorry, Python >= 3.10 is not supported')
if sys.version_info >= (3, 11):
sys.exit('Sorry, Python >= 3.11 is not supported')


def select_constraint(default, nightly=None, git_master=None):
Expand Down Expand Up @@ -79,7 +79,7 @@ def select_constraint(default, nightly=None, git_master=None):
'fairness_indicators = tensorboard_plugin_fairness_indicators.plugin:FairnessIndicatorsPlugin',
],
},
python_requires='>=3.7,<3.10',
python_requires='>=3.8,<3.11',
install_requires=REQUIRED_PACKAGES,
tests_require=REQUIRED_PACKAGES,
classifiers=[
Expand All @@ -90,9 +90,9 @@ def select_constraint(default, nightly=None, git_master=None):
'License :: OSI Approved :: Apache Software License',
'Operating System :: OS Independent',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3 :: Only',
'Topic :: Scientific/Engineering',
'Topic :: Scientific/Engineering :: Mathematics',
Expand Down

0 comments on commit d635e8e

Please sign in to comment.