Skip to content

Commit

Permalink
CI: remove Django 4.0 (#1422)
Browse files Browse the repository at this point in the history
* CI: remove Django 4.0

* fix tags
  • Loading branch information
dulmandakh authored Jun 7, 2023
1 parent 8fa8aea commit 3e7a16a
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ jobs:
strategy:
max-parallel: 4
matrix:
django: ["3.2", "4.0", "4.1", "4.2"]
django: ["3.2", "4.1", "4.2"]
python-version: ["3.8", "3.9", "3.10"]
include:
- django: "3.2"
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -56,8 +56,8 @@
"Programming Language :: Python :: Implementation :: PyPy",
"Framework :: Django",
"Framework :: Django :: 3.2",
"Framework :: Django :: 4.0",
"Framework :: Django :: 4.1",
"Framework :: Django :: 4.2",
],
keywords="api graphql protocol rest relay graphene",
packages=find_packages(exclude=["tests", "examples", "examples.*"]),
Expand Down
6 changes: 2 additions & 4 deletions tox.ini
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
[tox]
envlist =
py{37,38,39,310}-django32,
py{38,39,310}-django{40,41,main},
py311-django{41,main}
py{38,39,310}-django{41,42,main},
py311-django{41,42,main}
pre-commit

[gh-actions]
Expand All @@ -16,7 +16,6 @@ python =
[gh-actions:env]
DJANGO =
3.2: django32
4.0: django40
4.1: django41
4.2: django42
main: djangomain
Expand All @@ -31,7 +30,6 @@ deps =
-e.[test]
psycopg2-binary
django32: Django>=3.2,<4.0
django40: Django>=4.0,<4.1
django41: Django>=4.1,<4.2
django42: Django>=4.2,<4.3
djangomain: https://github.com/django/django/archive/main.zip
Expand Down

0 comments on commit 3e7a16a

Please sign in to comment.