Skip to content

Commit

Permalink
Stop testing for Python 3.7
Browse files Browse the repository at this point in the history
  • Loading branch information
leplatrem committed Feb 14, 2024
1 parent 997f481 commit 53ddb23
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
strategy:
fail-fast: false
matrix:
python-version: ['3.7', '3.8', '3.9', '3.10', '3.11']
python-version: ['3.8', '3.9', '3.10', '3.11']

# Service containers to run with `container-job`
services:
Expand Down
6 changes: 6 additions & 0 deletions docs/changelog.rst
Original file line number Diff line number Diff line change
@@ -1,6 +1,12 @@
Changelog
---------

2024.X.X (unreleased)
~~~~~~~~~~~~~~~~~~~~~

- Drop support of Python 3.7


2024.1.0
~~~~~~~~~~~~~~~~~~~~~

Expand Down
1 change: 0 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,6 @@ def read(*parts):
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
Expand Down
7 changes: 3 additions & 4 deletions tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -4,15 +4,14 @@ minversion = 1.8
envlist =
py38-lint
py311-docs
py{37,38,39,310}-dj32
py{38,39,310}-dj32
py{38,39,310,311}-dj{40,41,42}
py{310,311}-dj{50}
py{37,38,39,310,311}-fl{20,21,22}
py{37,38,39,310,311}-s{21,22}
py{38,39,310,311}-fl{20,21,22}
py{38,39,310,311}-s{21,22}

[gh-actions]
python =
3.7: py37
3.8: py38
3.9: py39
3.10: py310
Expand Down

0 comments on commit 53ddb23

Please sign in to comment.