Skip to content

Commit

Permalink
Merge pull request #11 from infoscout/feat/PIT-3636/add_django_2.2_su…
Browse files Browse the repository at this point in the history
…pport

PIT-3636: add support for django 2.2
  • Loading branch information
cyolveren authored Nov 18, 2022
2 parents f2df9ad + a5700af commit 10eaef8
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 3 deletions.
9 changes: 7 additions & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,9 @@ env:
- DJANGO_VERSION=1.9.13
- DJANGO_VERSION=1.10.8
- DJANGO_VERSION=1.11.9
- DJANGO_VERSION=2.0.13
- DJANGO_VERSION=2.1.15
- DJANGO_VERSION=2.2.28

install:
- sudo apt-get install python-dev python3-dev libxml2-dev libxmlsec1-dev
Expand All @@ -22,6 +25,8 @@ matrix:
- python: 3.6
env: DJANGO_VERSION=1.11.9
- python: 3.6
env: DJANGO_VERSION=2.0.2
env: DJANGO_VERSION=2.0.13
- python: 3.6
env: DJANGO_VERSION=2.1.4
env: DJANGO_VERSION=2.1.15
- python: 3.6
env: DJANGO_VERSION=2.2.28
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,11 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](http://keepachangelog.com/)
and this project adheres to [Semantic Versioning](http://semver.org/).

## [2.4.0] - 2019-01-10

### Added
- Django 2.2 support

## [2.3.0] - 2019-01-10

### Added
Expand Down
3 changes: 2 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ def run(self):
zip_safe=False,
include_package_data=True,
install_requires=[
'Django >= 1.8, < 2.2a0',
'Django >= 1.8, < 3.0',
'python3-saml >= 1.4.0',
],
tests_require=[
Expand All @@ -67,6 +67,7 @@ def run(self):
"Framework :: Django :: 1.11",
"Framework :: Django :: 2.0",
"Framework :: Django :: 2.1",
"Framework :: Django :: 2.2",
"Intended Audience :: Developers",
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
Expand Down

0 comments on commit 10eaef8

Please sign in to comment.