Skip to content

Commit

Permalink
MAINT: remove python=3.7 as EOL is June 2023 (#516)
Browse files Browse the repository at this point in the history
  • Loading branch information
mmcky authored May 4, 2023
1 parent 7164bfd commit 752d20f
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 11 deletions.
13 changes: 5 additions & 8 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:

steps:
- uses: actions/checkout@v3
- name: Set up Python 3.8
- name: Set up Python 3.9
uses: actions/setup-python@v4
with:
python-version: 3.9
Expand All @@ -26,17 +26,14 @@ jobs:
fail-fast: false
matrix:
os: [ubuntu-latest]
python-version: ["3.7", "3.8", "3.9", "3.10"]
python-version: ["3.8", "3.9", "3.10"]
sphinx: [">=5,<6"]
include:
- os: ubuntu-latest
python-version: 3.7
sphinx: ">=4,<5"
- os: windows-latest
python-version: 3.8
python-version: 3.9
sphinx: ">=5,<6"
- os: macos-latest
python-version: 3.8
python-version: 3.9
sphinx: ">=5,<6"

runs-on: ${{ matrix.os }}
Expand Down Expand Up @@ -82,7 +79,7 @@ jobs:
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: 3.8
python-version: 3.9
- name: install flit
run: |
pip install flit~=3.4
Expand Down
3 changes: 1 addition & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,6 @@ classifiers = [
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
Expand All @@ -33,7 +32,7 @@ keywords = [
"docutils",
"sphinx",
]
requires-python = ">=3.7"
requires-python = ">=3.8"
dependencies = [
"importlib_metadata",
"ipython",
Expand Down
2 changes: 1 addition & 1 deletion tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ envlist = py38-sphinx5
[testenv]
usedevelop = true

[testenv:py{37,38,39,310}-sphinx{4,5}]
[testenv:py{38,39,310}-sphinx{4,5}]
extras = testing
deps =
sphinx4: sphinx>=4,<5
Expand Down

0 comments on commit 752d20f

Please sign in to comment.