Skip to content

Commit

Permalink
update minimal python version to 3.9
Browse files Browse the repository at this point in the history
  • Loading branch information
om26er committed Jan 11, 2024
1 parent 0c78ead commit 245c705
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ jobs:
# os: [ubuntu-20.04, macos-latest, windows-latest]

# https://github.com/actions/setup-python#specifying-a-pypy-version
python-version: ['3.7', '3.11', 'pypy-3.9', 'pypy-3.10']
python-version: ['3.9', '3.11', 'pypy-3.9', 'pypy-3.10']

# https://github.blog/changelog/2020-04-15-github-actions-new-workflow-features/
# https://docs.github.com/en/free-pro-team@latest/actions/reference/workflow-syntax-for-github-actions#jobsjob_idstepscontinue-on-error
Expand Down
10 changes: 5 additions & 5 deletions tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,12 @@
skip_missing_interpreters = true
envlist =
flake8
py37-{tw203,tw2210,twtrunk,asyncio}
py39-{tw203,tw2210,twtrunk,asyncio}
# Twisted <22.10 on Python 3.11 fails with:
# src/twisted/test/raiser.c:198:12: fatal error: longintrepr.h: Datei oder Verzeichnis nicht gefunden
py311-{ tw2210,twtrunk,asyncio}
pypy37-{tw203,tw2210,twtrunk,asyncio}
pypy39-{tw203,tw2210,twtrunk,asyncio}
pypy310-{tw203,tw2210,twtrunk,asyncio}


# MAP: GitHub Actions Python Name => Tox Env Name (for Python)
Expand All @@ -19,10 +19,10 @@ envlist =
#
[gh-actions]
python =
3.7: py37
3.9: py39
3.11: py311
pypy-3.7: pypy37
pypy-3.9: pypy39
pypy-3.9: pypy38
pypy-3.10: pypy310


[testenv]
Expand Down

0 comments on commit 245c705

Please sign in to comment.