Skip to content

Commit

Permalink
Merge pull request PedroBern#43 from PedroBern/remove_django21
Browse files Browse the repository at this point in the history
Remove deprecated Django 2.1 support
  • Loading branch information
PedroBern authored Apr 10, 2021
2 parents d52b135 + 040ddba commit ef223bc
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 12 deletions.
6 changes: 0 additions & 6 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,26 +25,20 @@ jobs:
- python: 3.8
env: TOXENV=black,flake8

- python: 3.6
env: DJANGO=2.1
- python: 3.6
env: DJANGO=2.2
- python: 3.6
env: DJANGO=3.0
- python: 3.6
env: DJANGO=master

- python: 3.7
env: DJANGO=2.1
- python: 3.7
env: DJANGO=2.2
- python: 3.7
env: DJANGO=3.0
- python: 3.7
env: DJANGO=master

- python: 3.8
env: DJANGO=2.1
- python: 3.8
env: DJANGO=2.2
- python: 3.8
Expand Down
2 changes: 1 addition & 1 deletion docs/installation.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
## Requirements

- Python: 3.6 - 3.7 - 3.8
- Django: 2.1 - 2.2 - 3.0
- Django: 2.2 - 3.0

---

Expand Down
3 changes: 1 addition & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ def get_version(package):
),
packages=find_packages(exclude=["tests*"]),
install_requires=[
"Django>=2.1.0",
"Django>=2.2.0",
"django-graphql-jwt==0.3.0",
"django-filter>=2.2.0",
"graphene_django>=2.1.8",
Expand All @@ -61,7 +61,6 @@ def get_version(package):
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Framework :: Django",
"Framework :: Django :: 2.1",
"Framework :: Django :: 2.2",
"Framework :: Django :: 3.0",
],
Expand Down
4 changes: 1 addition & 3 deletions tox.ini
Original file line number Diff line number Diff line change
@@ -1,11 +1,10 @@
[tox]
envlist =
py{36,37,38}-django{21,22,30,master},
py{36,37,38}-django{22,30,master},
flake8,black

[travis:env]
DJANGO =
2.1: django21
2.2: django22
3.0: django30
master: djangomaster
Expand All @@ -14,7 +13,6 @@ DJANGO =
passenv = *
usedevelop = True
deps =
django21: Django>=2.1,<2.2
django22: Django>=2.2,<3.0
django30: Django>=3.0a1,<3.1
djangomaster: https://github.com/django/django/archive/master.zip
Expand Down

0 comments on commit ef223bc

Please sign in to comment.