Skip to content

Commit af3a371

Browse files
committed
Drop support for Python 3.8
TensorFlow has [dropped support for python 3.8](tensorflow/tensorflow@9a1f8bb). This updates our CI to use Python 3.9
1 parent 165ef3b commit af3a371

File tree

2 files changed

+4
-5
lines changed

2 files changed

+4
-5
lines changed

.github/workflows/ci.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ jobs:
3737
fail-fast: false
3838
matrix:
3939
tf_version_id: ['tf', 'notf']
40-
python_version: ['3.8']
40+
python_version: ['3.9']
4141
steps:
4242
- uses: actions/checkout@ac593985615ec2ede58e132d2e21d2b1cbd6127c # v3.3.0
4343
- uses: actions/setup-python@13ae5bb136fac2878aff31522b9efb785519f984 # v4.3.0
@@ -149,7 +149,7 @@ jobs:
149149
- uses: actions/checkout@ac593985615ec2ede58e132d2e21d2b1cbd6127c # v3.3.0
150150
- uses: actions/setup-python@13ae5bb136fac2878aff31522b9efb785519f984 # v4.3.0
151151
with:
152-
python-version: '3.8'
152+
python-version: '3.9'
153153
architecture: 'x64'
154154
- name: 'Cache Cargo artifacts'
155155
if: matrix.mode == 'native'
@@ -217,7 +217,7 @@ jobs:
217217
# flake8 should run on each Python version that we target,
218218
# because the errors and warnings can differ due to language
219219
# changes, and we want to catch them all.
220-
python_version: ['3.8', '3.9', '3.10', '3.11']
220+
python_version: ['3.9', '3.10', '3.11']
221221
steps:
222222
- uses: actions/checkout@ac593985615ec2ede58e132d2e21d2b1cbd6127c # v3.3.0
223223
- uses: actions/setup-python@13ae5bb136fac2878aff31522b9efb785519f984 # v4.3.0

tensorboard/pip_package/setup.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ def get_readme():
6464
},
6565
install_requires=REQUIRED_PACKAGES,
6666
tests_require=REQUIRED_PACKAGES,
67-
python_requires=">=3.8",
67+
python_requires=">=3.9",
6868
# PyPI package information.
6969
classifiers=[
7070
"Development Status :: 4 - Beta",
@@ -73,7 +73,6 @@ def get_readme():
7373
"Intended Audience :: Science/Research",
7474
"License :: OSI Approved :: Apache Software License",
7575
"Programming Language :: Python :: 3",
76-
"Programming Language :: Python :: 3.8",
7776
"Programming Language :: Python :: 3.9",
7877
"Programming Language :: Python :: 3.10",
7978
"Programming Language :: Python :: 3.11",

0 commit comments

Comments
 (0)