Skip to content

Commit ead1995

Browse files
TEST: Attempt to remove the non-supported versions of Django to see if test suite will run
This is just a test commmit as my Tox runs are working locally but for some reason aren't running on the PR.
1 parent e996514 commit ead1995

File tree

2 files changed

+2
-7
lines changed

2 files changed

+2
-7
lines changed

setup.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -53,9 +53,8 @@
5353
"Programming Language :: Python :: Implementation :: PyPy",
5454
"Framework :: Django",
5555
"Framework :: Django :: 2.2",
56-
"Framework :: Django :: 3.0",
57-
"Framework :: Django :: 3.1",
5856
"Framework :: Django :: 3.2",
57+
"Framework :: Django :: 4.0",
5958
],
6059
keywords="api graphql protocol rest relay graphene",
6160
packages=find_packages(exclude=["tests", "examples", "examples.*"]),

tox.ini

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tox]
22
envlist =
3-
py{36,37,38,39}-django{22,30,31},
3+
py{36,37,38,39}-django{22},
44
py{36,37,38,39,310}-django32,
55
py{38,39,310}-django{40,main},
66
black,flake8
@@ -16,8 +16,6 @@ python =
1616
[gh-actions:env]
1717
DJANGO =
1818
2.2: django22
19-
3.0: django30
20-
3.1: django31
2119
3.2: django32
2220
4.0: django40
2321
main: djangomain
@@ -31,8 +29,6 @@ deps =
3129
-e.[test]
3230
psycopg2-binary
3331
django22: Django>=2.2,<3.0
34-
django30: Django>=3.0,<3.1
35-
django31: Django>=3.1,<3.2
3632
django32: Django>=3.2,<4.0
3733
django40: Django>=4.0,<4.1
3834
djangomain: https://github.com/django/django/archive/main.zip

0 commit comments

Comments
 (0)