Skip to content

Commit 79de8f3

Browse files
authored
Merge pull request #334 from AltSchool/update-reqs
Loosening and updating oddly specific minor version requirement in install requires
2 parents 6d98328 + 34a3e16 commit 79de8f3

File tree

6 files changed

+7
-6
lines changed

6 files changed

+7
-6
lines changed

.circleci/config.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ jobs:
66
parallelism: 1
77

88
docker:
9-
- image: circleci/python:3.6.9
9+
- image: circleci/python:3.7.12
1010
steps:
1111
- checkout
1212
- run:

.github/workflows/test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
matrix:
1515
python-version: [3.6, 3.7, 3.8]
1616
dj-version: ["2.2.*", "3.0.*", "3.1.*", "3.2.*"]
17-
drf-version: ["3.11.*", "3.12.*"]
17+
drf-version: ["3.11.*", "3.12.*", "3.13.*"]
1818

1919
steps:
2020
- uses: actions/checkout@v2

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ over HTTP.
6969

7070
- Python (3.6, 3.7, 3.8)
7171
- Django (2.2, 3.1, 3.2)
72-
- Django REST Framework (3.11, 3.12)
72+
- Django REST Framework (3.11, 3.12, 3.13)
7373

7474
# Installation
7575

install_requires.txt

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
Django>=2.2,<4
2-
djangorestframework>=3.11.0,<=3.12.4
2+
djangorestframework>=3.11.0,<3.14.0
33
inflection>=0.4.0
44
requests
55
hashids>=1.3.1
6+
six>=1.16.0

requirements.benchmark.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Sphinx==1.3.4
22
Django>=2.2.12<=3.2.7
3-
djangorestframework>=3.11.0,<=3.12.4
3+
djangorestframework>=3.11.0,<3.14.0
44
dj-database-url==0.3.0
55
django-debug-toolbar==1.7
66
flake8==3.9.2

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
NAME = 'dynamic-rest'
44
DESCRIPTION = 'Dynamic API support to Django REST Framework.'
55
URL = 'http://github.com/AltSchool/dynamic-rest'
6-
VERSION = '2.1.1'
6+
VERSION = '2.1.2'
77
SCRIPTS = ['manage.py']
88

99
setup(

0 commit comments

Comments
 (0)