Skip to content

Commit

Permalink
Update version support (#31)
Browse files Browse the repository at this point in the history
* Update version support

* Upgrade docs
  • Loading branch information
ngearhart authored Aug 23, 2023
1 parent abe147e commit 61c2712
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 9 deletions.
8 changes: 3 additions & 5 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,11 +6,9 @@ jobs:
test:
strategy:
matrix:
python: ['3.8', '3.9', '3.10']
django: ['2.2.*', '3.2.*', '4.0.*']
python: ['3.8', '3.9', '3.10', '3.11']
django: ['3.2.*', '4.2.*']
include:
- python: '3.7'
django: '2.2.*'
- python: '3.7'
django: '3.2.*'
runs-on: ubuntu-latest
Expand All @@ -29,7 +27,7 @@ jobs:
pip install -e .[test]
- name: Run tests
run: make
- uses: codecov/codecov-action@v1.0.3
- uses: codecov/codecov-action@v3.1.4
timeout-minutes: 1
continue-on-error: true
with:
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ For more information [here is the related issue](https://github.com/onelogin/pyt

### Django

Note: Django 1.11 support was dropped in `1.2.0`. If you need Django 1.11 support, please use version `1.1.4`.
Note: Django 1.11 support was dropped in `1.2.0`. If you need Django 1.11 support, please use version `1.1.4`. Django 2.x support was dropped in `1.3.0`. If you need Django 2.x support, please use version `1.2.2`.

**settings.py**

Expand Down
6 changes: 3 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@

setuptools.setup(
name="python3-saml-django",
version="1.2.2",
version="1.3.0",
author="THON Technology",
author_email="[email protected]",
description="Implement SAML Single Sign-On in your Django project quickly and easily.",
Expand All @@ -24,15 +24,15 @@
'Development Status :: 5 - Production/Stable',
'Environment :: Web Environment',
'Framework :: Django',
'Framework :: Django :: 2.2',
'Framework :: Django :: 3.2',
'Framework :: Django :: 4.0',
'Framework :: Django :: 4.2',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Programming Language :: Python :: 3 :: Only',
],
python_requires='>=3',
Expand Down

0 comments on commit 61c2712

Please sign in to comment.