Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Drop support for Python 3.7 #379

Merged
merged 2 commits into from Jan 3, 2024
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.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
9 changes: 0 additions & 9 deletions .github/workflows/ci.yaml
Expand Up @@ -71,14 +71,6 @@ jobs:
experimental: [false]

include:
# Pythons too old for latest
- python-version: "3.7"
twisted-version: "lowest"
experimental: false

- python-version: "pypy-3.8"
twisted-version: "lowest"
experimental: false

# Pythons too new for lowest
- python-version: "3.11"
Expand Down Expand Up @@ -119,7 +111,6 @@ jobs:
shell: python
run: |
table = {
"3.7": "py37",
"3.8": "py38",
"3.9": "py39",
"3.10": "py310",
Expand Down
1 change: 1 addition & 0 deletions changelog.d/378.removal.rst
@@ -0,0 +1 @@
Support for Python 3.7 and PyPy 3.8, which have reached end of support, has been dropped.
4 changes: 2 additions & 2 deletions tox.ini
@@ -1,6 +1,6 @@
[tox]
envlist =
py37-twisted_lowest,
py38-twisted_lowest,
{pypy3,py38,py39,py310,py311,py312}-twisted_latest,
{pypy3,py38,py39,py310,py311,py312}-twisted_trunk,
twine, check-manifest, flake8, docs, coverage-report
Expand Down Expand Up @@ -72,7 +72,7 @@ commands =
sphinx-build -b html . html

[testenv:coverage-report]
depends = pypy3,py37,py38,py39,py310,py311,py312
depends = pypy3,py38,py39,py310,py311,py312
commands =
coverage combine
coverage report
Expand Down