Skip to content

Commit

Permalink
Drop support for Python 3.7
Browse files Browse the repository at this point in the history
Python 3.7 reached the end of its supported life in June 2023.
  • Loading branch information
jparise committed Oct 21, 2023
1 parent be4f490 commit 0e8f745
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [3.7, 3.8, 3.9, "3.10", "3.11", "3.12", pypy-3.7]
python-version: [3.8, 3.9, "3.10", "3.11", "3.12", pypy-3.8]
steps:
- uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python-version }}
Expand Down
1 change: 0 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,6 @@ def run_tests(self):
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
Expand Down
4 changes: 1 addition & 3 deletions tox.ini
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
[tox]
envlist =
py37-flake85,
py38-flake8-{v5,v6,latest},
py39-flake8-{v5,v6,latest},
py310-flake8-{v5,v6,latest},
Expand All @@ -11,13 +10,12 @@ envlist =

[gh-actions]
python =
3.7: py37
3.8: py38
3.9: py39
3.10: py310
3.11: py311
3.12: py312, py312-flake8
pypy-3.7: pypy3
pypy-3.8: pypy3

[testenv]
commands = python run_tests.py
Expand Down

0 comments on commit 0e8f745

Please sign in to comment.