Skip to content

Commit 69b8da4

Browse files
committed
build: explicitly require Python 3.7+
Contributes to #5725
1 parent 025eb00 commit 69b8da4

File tree

3 files changed

+3
-5
lines changed

3 files changed

+3
-5
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -214,7 +214,7 @@ jobs:
214214
# flake8 should run on each Python version that we target,
215215
# because the errors and warnings can differ due to language
216216
# changes, and we want to catch them all.
217-
python_version: ['3.6', '3.7']
217+
python_version: ['3.7', '3.8']
218218
steps:
219219
- uses: actions/checkout@50fbc622fc4ef5163becd7fab6573eac35f8462e
220220
- uses: actions/setup-python@152ba7c4dd6521b8e9c93f72d362ce03bf6c4f20

tensorboard/data/server/pip_package/setup.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@
3232
"bin/*",
3333
],
3434
},
35-
python_requires=">=3.6",
35+
python_requires=">=3.7",
3636
install_requires=[],
3737
tests_require=[],
3838
# PyPI package information. <https://pypi.org/classifiers/>
@@ -43,7 +43,6 @@
4343
"Intended Audience :: Science/Research",
4444
"License :: OSI Approved :: Apache Software License",
4545
"Programming Language :: Python :: 3",
46-
"Programming Language :: Python :: 3.6",
4746
"Programming Language :: Python :: 3.7",
4847
"Programming Language :: Python :: 3.8",
4948
"Programming Language :: Rust",

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.6",
67+
python_requires=">=3.7",
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.6",
7776
"Programming Language :: Python :: 3.7",
7877
"Programming Language :: Python :: 3.8",
7978
"Programming Language :: Python :: 3.9",

0 commit comments

Comments
 (0)