Skip to content

Commit

Permalink
python: drop 3.8, add 3.12
Browse files Browse the repository at this point in the history
  • Loading branch information
odscjames committed Sep 27, 2024
1 parent 9ef4f07 commit b324850
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [3.8]
python-version: [3.9]
steps:
- uses: actions/checkout@v2
- uses: actions/setup-python@v1
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [3.8, 3.9, "3.10", "3.11" ]
python-version: [3.9, "3.10", "3.11", "3.12" ]
django-version: [">=3.2,<4", ">=4,<5"]
services:
postgres:
Expand Down
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,10 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.

## [Unreleased]

### Removed

- Python 3.8 support, due to end of life dates.

## [0.7.1] - 2024-05-29

### Fixed
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -31,5 +31,5 @@
extras_require={
"dev": ["pip-tools", "black==22.3", "flake8", "isort", "django-environ"]
},
python_requires=">=3.8",
python_requires=">=3.9",
)

0 comments on commit b324850

Please sign in to comment.