Skip to content

Commit

Permalink
Drop python 3.7 and django 4.0 support (#920)
Browse files Browse the repository at this point in the history
  • Loading branch information
jieter committed Jun 27, 2023
1 parent c605528 commit 998aabb
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 13 deletions.
12 changes: 2 additions & 10 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,6 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/setup-python@v4.6.1
with:
python-version: 3.8
- uses: actions/checkout@v3
- run: python -m pip install -r requirements/common.pip isort==5.6.4
- run: isort --diff --check django_tables2 test
Expand All @@ -31,15 +29,9 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [3.7, 3.8, 3.9, "3.10", 3.11]
django-version: [3.2, 4.0, 4.1, 4.2]
python-version: [3.8, 3.9, "3.10", 3.11]
django-version: [3.2, 4.1, 4.2]
exclude:
- python-version: 3.7
django-version: 4.0
- python-version: 3.7
django-version: 4.1
- python-version: 3.7
django-version: 4.2
- python-version: "3.10"
django-version: 3.2
- python-version: 3.11
Expand Down
4 changes: 1 addition & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,7 @@
"Development Status :: 5 - Production/Stable",
"Environment :: Web Environment",
"Framework :: Django",
"Framework :: Django :: 3.2",
"Framework :: Django :: 4.0",
"Framework :: Django :: 3.2", # Until April 2024
"Framework :: Django :: 4.1",
"Framework :: Django :: 4.2",
"Intended Audience :: Developers",
Expand All @@ -35,7 +34,6 @@
"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

0 comments on commit 998aabb

Please sign in to comment.