Skip to content
Closed
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 10 additions & 8 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,23 +31,25 @@ jobs:
strategy:
fail-fast: false
matrix:
python: ["3.7", "3.8", "3.9", "3.10", "3.11", "3.12", "pypy3.10"]
python: ["3.7", "3.8", "3.9", "3.10", "3.11", "3.12", "3.13", "pypy3.10"]
os: [ubuntu-latest, windows-latest]
include:
- python: "3.7"
tox_env: "py37-pytest7"
Copy link
Copy Markdown
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Let's drop the eol pythons

They aren't avaliable on recent builds

Copy link
Copy Markdown
Contributor Author

@okken okken Apr 4, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

and testing against pytest 4, 5, 6, 7? seems silly.
I've left 4,5,6,7 in there for now
But removed testing against Python 3.7 and 3.8

tox_env: "py37-pytest8"
- python: "3.8"
tox_env: "py38-pytest7"
tox_env: "py38-pytest8"
- python: "3.9"
tox_env: "py39-pytest7"
tox_env: "py39-pytest8"
- python: "3.10"
tox_env: "py310-pytest7"
tox_env: "py310-pytest8"
- python: "3.11"
tox_env: "py311-pytest7"
tox_env: "py311-pytest8"
- python: "3.12"
tox_env: "py312-pytest7"
tox_env: "py312-pytest8"
- python: "3.13"
tox_env: "py313-pytest8"
- python: "pypy3.10"
tox_env: "pypy3-pytest7"
tox_env: "pypy3-pytest8"

steps:
- uses: actions/checkout@v4
Expand Down
7 changes: 4 additions & 3 deletions tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@
minversion = 4.0
isolated_build = true
envlist =
py{37,38,39,310,311,312,py3}-pytest7
py37-pytest{4,5,6}
py{37,38,39,310,311,312,313,314,py3}-pytest8
py37-pytest{4,5,6,7}
flake8


Expand All @@ -15,7 +15,8 @@ deps =
pytest4: pytest~=4.6
pytest5: pytest~=5.4
pytest6: pytest~=6.2
pytest7: pytest>=7
pytest7: pytest~=7.4
pytest8: pytest>=8


[testenv:flake8]
Expand Down
Loading