Skip to content

Commit

Permalink
N/A
Browse files Browse the repository at this point in the history
PiperOrigin-RevId: 450760650
  • Loading branch information
rtg0795 authored and Responsible ML Infra Team committed May 25, 2022
1 parent 0e109eb commit 4fd9904
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 6 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, 9):
sys.exit('Sorry, Python >= 3.9 is not supported')
if sys.version_info >= (3, 10):
sys.exit('Sorry, Python >= 3.10 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.9',
python_requires='>=3.7,<3.10',
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.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3 :: Only',
'Topic :: Scientific/Engineering',
'Topic :: Scientific/Engineering :: Mathematics',
Expand Down
7 changes: 4 additions & 3 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, 9):
sys.exit('Sorry, Python >= 3.9 is not supported')
if sys.version_info >= (3, 10):
sys.exit('Sorry, Python >= 3.10 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.9',
python_requires='>=3.7,<3.10',
install_requires=REQUIRED_PACKAGES,
tests_require=REQUIRED_PACKAGES,
classifiers=[
Expand All @@ -92,6 +92,7 @@ def select_constraint(default, nightly=None, git_master=None):
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3 :: Only',
'Topic :: Scientific/Engineering',
'Topic :: Scientific/Engineering :: Mathematics',
Expand Down

0 comments on commit 4fd9904

Please sign in to comment.