Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 11 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,12 +29,14 @@ jobs:
fail-fast: false
matrix:
env:
# DRF 3.14
- python: '3.9'
TOXENV: py39-django42-djangorestframework314
- python: '3.10'
TOXENV: py310-django42-djangorestframework314
- python: '3.11'
TOXENV: py311-django42-djangorestframework314
# DRF 3.15
- python: '3.11'
TOXENV: py311-django50-djangorestframework315
- python: '3.12'
Expand All @@ -43,6 +45,15 @@ jobs:
TOXENV: py311-django51-djangorestframework315
- python: '3.12'
TOXENV: py312-django51-djangorestframework315
# DRF 3.16
- python: '3.11'
TOXENV: py311-django50-djangorestframework316
- python: '3.12'
TOXENV: py312-django50-djangorestframework316
- python: '3.11'
TOXENV: py311-django51-djangorestframework316
- python: '3.12'
TOXENV: py312-django51-djangorestframework316
steps:
- uses: actions/checkout@v4
with:
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
platforms=['Platform Indipendent'],
keywords=['django', 'rest-framework', 'gis', 'geojson'],
packages=find_packages(exclude=['tests', 'tests.*']),
install_requires=['djangorestframework>=3.12,<3.16', 'django-filter>=23.5,<26.0'],
install_requires=['djangorestframework>=3.12,<3.17', 'django-filter>=23.5,<26.0'],
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Web Environment',
Expand Down
5 changes: 3 additions & 2 deletions tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@
envlist =
py{39,310}-django{42,50}-djangorestframework{314}{,-pytest}
py{311}-django{42}-djangorestframework{314}{,-pytest}
py{311,312}-django{50}-djangorestframework{315}{,-pytest}
py{311,312}-django{51}-djangorestframework{315}{,-pytest}
py{311,312}-django{50}-djangorestframework{315,316}{,-pytest}
py{311,312}-django{51}-djangorestframework{315,316}{,-pytest}

[testenv]
usedevelop = true
Expand All @@ -22,6 +22,7 @@ deps =
django51: Django~=5.1.0
djangorestframework314: djangorestframework~=3.14.0
djangorestframework315: djangorestframework~=3.15.0
djangorestframework316: djangorestframework~=3.16.0
-rrequirements-test.txt
pytest: pytest
pytest: pytest-django
Expand Down
Loading