Skip to content

Commit

Permalink
Drop support for python 3.7
Browse files Browse the repository at this point in the history
  • Loading branch information
mfogel committed Jul 15, 2023
1 parent e978e35 commit 01af0f0
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 6 deletions.
6 changes: 1 addition & 5 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -55,16 +55,12 @@ jobs:
strategy:
matrix:
# https://docs.djangoproject.com/en/4.1/faq/install/#what-python-version-can-i-use-with-django
python-version: ["3.7", "3.8", "3.9", "3.10", "3.11"]
python-version: ["3.8", "3.9", "3.10", "3.11"]
django-version: ["3.2", "4.1", "4.2"]
db-engine: [sqlite, postgres]
exclude:
- django-version: "3.2"
python-version: "3.11"
- django-version: "4.1"
python-version: "3.7"
- django-version: "4.2"
python-version: "3.7"

env:
PYTHON_VERSION: ${{ matrix.python-version }}
Expand Down
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -134,6 +134,7 @@ poetry run pytest
#### in development (main)

- Drop support for django 2.2, 4.0
- Drop support for python 3.7

#### 5.1 (2023-06-18)

Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ packages = [

[tool.poetry.dependencies]
Django = ">=3.2,<5.0,!=4.0.*"
python = "^3.7"
python = "^3.8"
pytz = "*"
"backports.zoneinfo" = { version = "^0.2.1", python = "<3.9" }

Expand Down

0 comments on commit 01af0f0

Please sign in to comment.