Skip to content

Commit

Permalink
Merge pull request #334 from AltSchool/update-reqs
Browse files Browse the repository at this point in the history
Loosening and updating oddly specific minor version requirement in install requires
  • Loading branch information
chdastolfo authored Feb 2, 2022
2 parents 6d98328 + 34a3e16 commit 79de8f3
Show file tree
Hide file tree
Showing 6 changed files with 7 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ jobs:
parallelism: 1

docker:
- image: circleci/python:3.6.9
- image: circleci/python:3.7.12
steps:
- checkout
- run:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
matrix:
python-version: [3.6, 3.7, 3.8]
dj-version: ["2.2.*", "3.0.*", "3.1.*", "3.2.*"]
drf-version: ["3.11.*", "3.12.*"]
drf-version: ["3.11.*", "3.12.*", "3.13.*"]

steps:
- uses: actions/checkout@v2
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ over HTTP.

- Python (3.6, 3.7, 3.8)
- Django (2.2, 3.1, 3.2)
- Django REST Framework (3.11, 3.12)
- Django REST Framework (3.11, 3.12, 3.13)

# Installation

Expand Down
3 changes: 2 additions & 1 deletion install_requires.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
Django>=2.2,<4
djangorestframework>=3.11.0,<=3.12.4
djangorestframework>=3.11.0,<3.14.0
inflection>=0.4.0
requests
hashids>=1.3.1
six>=1.16.0
2 changes: 1 addition & 1 deletion requirements.benchmark.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Sphinx==1.3.4
Django>=2.2.12<=3.2.7
djangorestframework>=3.11.0,<=3.12.4
djangorestframework>=3.11.0,<3.14.0
dj-database-url==0.3.0
django-debug-toolbar==1.7
flake8==3.9.2
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
NAME = 'dynamic-rest'
DESCRIPTION = 'Dynamic API support to Django REST Framework.'
URL = 'http://github.com/AltSchool/dynamic-rest'
VERSION = '2.1.1'
VERSION = '2.1.2'
SCRIPTS = ['manage.py']

setup(
Expand Down

0 comments on commit 79de8f3

Please sign in to comment.