Skip to content

Commit df8e8b5

Browse files
authored
[deps] Add support for djangorestframework~=3.16.0
1 parent 82d9f0a commit df8e8b5

File tree

3 files changed

+15
-3
lines changed

3 files changed

+15
-3
lines changed

.github/workflows/ci.yml

+11
Original file line numberDiff line numberDiff line change
@@ -29,12 +29,14 @@ jobs:
2929
fail-fast: false
3030
matrix:
3131
env:
32+
# DRF 3.14
3233
- python: '3.9'
3334
TOXENV: py39-django42-djangorestframework314
3435
- python: '3.10'
3536
TOXENV: py310-django42-djangorestframework314
3637
- python: '3.11'
3738
TOXENV: py311-django42-djangorestframework314
39+
# DRF 3.15
3840
- python: '3.11'
3941
TOXENV: py311-django50-djangorestframework315
4042
- python: '3.12'
@@ -43,6 +45,15 @@ jobs:
4345
TOXENV: py311-django51-djangorestframework315
4446
- python: '3.12'
4547
TOXENV: py312-django51-djangorestframework315
48+
# DRF 3.16
49+
- python: '3.11'
50+
TOXENV: py311-django50-djangorestframework316
51+
- python: '3.12'
52+
TOXENV: py312-django50-djangorestframework316
53+
- python: '3.11'
54+
TOXENV: py311-django51-djangorestframework316
55+
- python: '3.12'
56+
TOXENV: py312-django51-djangorestframework316
4657
steps:
4758
- uses: actions/checkout@v4
4859
with:

setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
platforms=['Platform Indipendent'],
2626
keywords=['django', 'rest-framework', 'gis', 'geojson'],
2727
packages=find_packages(exclude=['tests', 'tests.*']),
28-
install_requires=['djangorestframework>=3.12,<3.16', 'django-filter>=23.5,<26.0'],
28+
install_requires=['djangorestframework>=3.12,<3.17', 'django-filter>=23.5,<26.0'],
2929
classifiers=[
3030
'Development Status :: 4 - Beta',
3131
'Environment :: Web Environment',

tox.ini

+3-2
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22
envlist =
33
py{39,310}-django{42,50}-djangorestframework{314}{,-pytest}
44
py{311}-django{42}-djangorestframework{314}{,-pytest}
5-
py{311,312}-django{50}-djangorestframework{315}{,-pytest}
6-
py{311,312}-django{51}-djangorestframework{315}{,-pytest}
5+
py{311,312}-django{50}-djangorestframework{315,316}{,-pytest}
6+
py{311,312}-django{51}-djangorestframework{315,316}{,-pytest}
77

88
[testenv]
99
usedevelop = true
@@ -22,6 +22,7 @@ deps =
2222
django51: Django~=5.1.0
2323
djangorestframework314: djangorestframework~=3.14.0
2424
djangorestframework315: djangorestframework~=3.15.0
25+
djangorestframework316: djangorestframework~=3.16.0
2526
-rrequirements-test.txt
2627
pytest: pytest
2728
pytest: pytest-django

0 commit comments

Comments
 (0)