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
5 changes: 4 additions & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ language: python

cache: pip

dist: bionic
dist: jammy

python:
- "2.7"
Expand All @@ -21,6 +21,7 @@ env:
- DJANGO_VERSION="<2.3"
- DJANGO_VERSION="<3.1"
- DJANGO_VERSION="<3.2"
- DJANGO_VERSION="<3.3"

matrix:
exclude:
Expand All @@ -29,9 +30,11 @@ matrix:
- { python: "2.7", env: DJANGO_VERSION="<2.3" }
- { python: "2.7", env: DJANGO_VERSION="<3.1" }
- { python: "2.7", env: DJANGO_VERSION="<3.2" }
- { python: "2.7", env: DJANGO_VERSION="<3.3" }

- { python: "3.5", env: DJANGO_VERSION="<3.1" }
- { python: "3.5", env: DJANGO_VERSION="<3.2" }
- { python: "3.5", env: DJANGO_VERSION="<3.3" }

- { python: "3.6", env: DJANGO_VERSION="<1.9" }
- { python: "3.6", env: DJANGO_VERSION="<1.10" }
Expand Down
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
1.5.0 (2022-08-15)
==================
* Added supporting Django v3.2


1.4.0 (2020-09-23)
==================
* Added supporting Django v3.1
Expand Down
2 changes: 1 addition & 1 deletion privateurl/__init__.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
__version__ = '1.4.0'
__version__ = '1.5.0'

default_app_config = 'privateurl.apps.PrivateURLConfig'
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
include_package_data=True,
zip_safe=False, # because include static
install_requires=[
'django>=1.8,<3.2',
'django>=1.8,<3.3',
],
keywords=[
'django', 'url', 'private', 'private url', 'django-privateurl',
Expand Down