Skip to content

Commit 9a41332

Browse files
committed
retire py 3.7
1 parent ba0d8ab commit 9a41332

File tree

4 files changed

+4
-5
lines changed

4 files changed

+4
-5
lines changed

.github/workflows/python-package.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
strategy:
1414
fail-fast: false
1515
matrix:
16-
python-version: ['3.7', '3.8', '3.9', '3.10']
16+
python-version: ['3.8', '3.9', '3.10']
1717

1818
steps:
1919
- uses: actions/checkout@v2

.readthedocs.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ version: 2
99
build:
1010
os: ubuntu-20.04
1111
tools:
12-
python: "3.7"
12+
python: "3.8"
1313
rust: "1.61"
1414

1515
# Build documentation in the docs/ directory with Sphinx

docs/conf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
]
2525

2626
intersphinx_mapping = {
27-
"python": ("https://docs.python.org/3.7", None),
27+
"python": ("https://docs.python.org/3.8", None),
2828
"baseplate": ("https://baseplate.readthedocs.io/en/stable/", None),
2929
}
3030

setup.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
license="BSD",
1515
use_scm_version=True,
1616
packages=find_packages(),
17-
python_requires=">=3.7",
17+
python_requires=">=3.8",
1818
setup_requires=["setuptools_scm"],
1919
install_requires=[
2020
"baseplate>=2.0.0a1,<3.0",
@@ -28,7 +28,6 @@
2828
"Development Status :: 5 - Production/Stable",
2929
"License :: OSI Approved :: BSD License",
3030
"Programming Language :: Python",
31-
"Programming Language :: Python :: 3.7",
3231
"Programming Language :: Python :: 3.8",
3332
"Programming Language :: Python :: 3.9",
3433
"Topic :: Software Development :: Libraries",

0 commit comments

Comments
 (0)