Skip to content

Commit 752d20f

Browse files
authored
MAINT: remove python=3.7 as EOL is June 2023 (#516)
1 parent 7164bfd commit 752d20f

File tree

3 files changed

+7
-11
lines changed

3 files changed

+7
-11
lines changed

.github/workflows/tests.yml

Lines changed: 5 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414

1515
steps:
1616
- uses: actions/checkout@v3
17-
- name: Set up Python 3.8
17+
- name: Set up Python 3.9
1818
uses: actions/setup-python@v4
1919
with:
2020
python-version: 3.9
@@ -26,17 +26,14 @@ jobs:
2626
fail-fast: false
2727
matrix:
2828
os: [ubuntu-latest]
29-
python-version: ["3.7", "3.8", "3.9", "3.10"]
29+
python-version: ["3.8", "3.9", "3.10"]
3030
sphinx: [">=5,<6"]
3131
include:
32-
- os: ubuntu-latest
33-
python-version: 3.7
34-
sphinx: ">=4,<5"
3532
- os: windows-latest
36-
python-version: 3.8
33+
python-version: 3.9
3734
sphinx: ">=5,<6"
3835
- os: macos-latest
39-
python-version: 3.8
36+
python-version: 3.9
4037
sphinx: ">=5,<6"
4138

4239
runs-on: ${{ matrix.os }}
@@ -82,7 +79,7 @@ jobs:
8279
- name: Set up Python
8380
uses: actions/setup-python@v4
8481
with:
85-
python-version: 3.8
82+
python-version: 3.9
8683
- name: install flit
8784
run: |
8885
pip install flit~=3.4

pyproject.toml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,6 @@ classifiers = [
1616
"License :: OSI Approved :: MIT License",
1717
"Programming Language :: Python :: 3",
1818
"Programming Language :: Python :: 3 :: Only",
19-
"Programming Language :: Python :: 3.7",
2019
"Programming Language :: Python :: 3.8",
2120
"Programming Language :: Python :: 3.9",
2221
"Programming Language :: Python :: 3.10",
@@ -33,7 +32,7 @@ keywords = [
3332
"docutils",
3433
"sphinx",
3534
]
36-
requires-python = ">=3.7"
35+
requires-python = ">=3.8"
3736
dependencies = [
3837
"importlib_metadata",
3938
"ipython",

tox.ini

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ envlist = py38-sphinx5
1616
[testenv]
1717
usedevelop = true
1818

19-
[testenv:py{37,38,39,310}-sphinx{4,5}]
19+
[testenv:py{38,39,310}-sphinx{4,5}]
2020
extras = testing
2121
deps =
2222
sphinx4: sphinx>=4,<5

0 commit comments

Comments
 (0)