Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
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
3 changes: 1 addition & 2 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ jobs:
strategy:
matrix:
# Python versions common to lowest and latest
python-version: ["3.9", "3.10", "pypy-3.11"]
python-version: ["3.10", "pypy-3.11"]
twisted-version: ["lowest", "latest"]
experimental: [false]

Expand Down Expand Up @@ -128,7 +128,6 @@ jobs:
shell: python
run: |
table = {
"3.9": "py39",
"3.10": "py310",
"3.11": "py311",
"3.12": "py312",
Expand Down
5 changes: 2 additions & 3 deletions tox.ini
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
[tox]
envlist =
py39-twisted_lowest,
{pypy3,py39,py310,py311,py312,py313,py314}-twisted_latest,
{pypy3,py310,py311,py312,py313,py314}-twisted_latest,
{pypy3,py310,py311,py312,py313,py314}-twisted_trunk,
check-manifest, flake8, docs, coverage-report
isolated_build = true
Expand Down Expand Up @@ -75,7 +74,7 @@ commands =
sphinx-build -b html . html

[testenv:coverage-report]
depends = pypy3,py39,py310,py311,py312,py313,py314
depends = py*
commands =
coverage combine
coverage report
Expand Down
Loading