Skip to content

Commit

Permalink
Update python version support
Browse files Browse the repository at this point in the history
* Remove support for python 3.8 (EOL 2024-10-07)
* Add support for python 3.12 and 3.13

There is a new maintainer for pytest-flake8 (see
tholo/pytest-flake8#98), which allows us to
migrate to the newest version of flake8.
  • Loading branch information
hemberger committed Nov 16, 2024
1 parent 1112010 commit a32807d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/python-package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
strategy:
fail-fast: false
matrix:
python-version: ["3.8", "3.9", "3.10", "3.11", "pypy3.8"]
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13", "pypy3.9"]

steps:
- uses: actions/checkout@v4
Expand Down
3 changes: 1 addition & 2 deletions tests/requirements.txt
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
flake8 < 5.0.0
pytest >= 3.1.0
pytest-cov
pytest-flake8
pytest-flake8 >= 1.3.0
pytest-httpbin
pytest-mock
requests_mock >= 1.3.0
Expand Down

0 comments on commit a32807d

Please sign in to comment.