diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index c6850cd609..bb31e0cffc 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -37,7 +37,7 @@ jobs: fail-fast: false matrix: tf_version_id: ['tf', 'notf'] - python_version: ['3.7'] + python_version: ['3.8'] steps: - uses: actions/checkout@50fbc622fc4ef5163becd7fab6573eac35f8462e - uses: actions/setup-python@13ae5bb136fac2878aff31522b9efb785519f984 # v4.3.0 @@ -214,7 +214,7 @@ jobs: # flake8 should run on each Python version that we target, # because the errors and warnings can differ due to language # changes, and we want to catch them all. - python_version: ['3.7', '3.8', '3.9', '3.10'] + python_version: ['3.8', '3.9', '3.10', '3.11'] steps: - uses: actions/checkout@50fbc622fc4ef5163becd7fab6573eac35f8462e - uses: actions/setup-python@13ae5bb136fac2878aff31522b9efb785519f984 # v4.3.0 @@ -237,7 +237,7 @@ jobs: - uses: actions/checkout@50fbc622fc4ef5163becd7fab6573eac35f8462e - uses: actions/setup-python@13ae5bb136fac2878aff31522b9efb785519f984 # v4.3.0 with: - python-version: '3.7' + python-version: '3.8' architecture: 'x64' - name: 'Install black, yamllint, and the TensorFlow docs notebook tools' run: | diff --git a/tensorboard/pip_package/setup.py b/tensorboard/pip_package/setup.py index ec3f50d3b3..3857b47da9 100644 --- a/tensorboard/pip_package/setup.py +++ b/tensorboard/pip_package/setup.py @@ -64,7 +64,7 @@ def get_readme(): }, install_requires=REQUIRED_PACKAGES, tests_require=REQUIRED_PACKAGES, - python_requires=">=3.7", + python_requires=">=3.8", # PyPI package information. classifiers=[ "Development Status :: 4 - Beta", @@ -73,10 +73,10 @@ def get_readme(): "Intended Audience :: Science/Research", "License :: OSI Approved :: Apache Software License", "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.11", "Programming Language :: Python :: 3 :: Only", "Topic :: Scientific/Engineering :: Mathematics", "Topic :: Software Development :: Libraries :: Python Modules",