Skip to content
This repository was archived by the owner on Apr 23, 2025. It is now read-only.

Commit 0ee009d

Browse files
Fix TF estimator setup.py errors
PiperOrigin-RevId: 425392774
1 parent bd8eb28 commit 0ee009d

1 file changed

Lines changed: 5 additions & 2 deletions

File tree

  • tensorflow_estimator/tools/pip_package

tensorflow_estimator/tools/pip_package/setup.py

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -55,16 +55,19 @@
5555
packages=setuptools.find_packages(),
5656
install_requires=REQUIRED_PACKAGES,
5757
# PyPI package information.
58+
# Supported Python versions
59+
python_requires='>=3.7',
5860
classifiers=[
5961
'Development Status :: 5 - Production/Stable',
6062
'Intended Audience :: Developers',
6163
'Intended Audience :: Education',
6264
'Intended Audience :: Science/Research',
6365
'License :: OSI Approved :: Apache Software License',
6466
'Programming Language :: Python :: 3',
65-
'Programming Language :: Python :: 3.5',
66-
'Programming Language :: Python :: 3.6',
6767
'Programming Language :: Python :: 3.7',
68+
'Programming Language :: Python :: 3.8',
69+
'Programming Language :: Python :: 3.9',
70+
'Programming Language :: Python :: 3.10',
6871
'Topic :: Scientific/Engineering',
6972
'Topic :: Scientific/Engineering :: Mathematics',
7073
'Topic :: Scientific/Engineering :: Artificial Intelligence',

0 commit comments

Comments
 (0)