Skip to content

Commit

Permalink
Merge pull request #386 from g-as/bump_versions
Browse files Browse the repository at this point in the history
Bumped handled python versions & prepared for Django 5.0
  • Loading branch information
Giuseppe De Marco authored Sep 26, 2023
2 parents 4b449e4 + d384877 commit 1915dfb
Show file tree
Hide file tree
Showing 4 changed files with 17 additions and 11 deletions.
12 changes: 8 additions & 4 deletions .github/workflows/python-package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,11 +15,15 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.8", "3.9", "3.10"]
django-version: ["3.2", "4.0", "4.1"]
include:
- python-version: "3.7"
python-version: ["3.8", "3.9", "3.10", "3.11"]
django-version: ["3.2", "4.1", "4.2", "5.0"]
exclude:
- python-version: "3.11"
django-version: "3.2"
- python-version: "3.8"
django-version: "5.0"
- python-version: "3.9"
django-version: "5.0"

steps:
- uses: actions/checkout@v2
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ djangosaml2
![Python version](https://img.shields.io/badge/license-Apache%202-blue.svg)
![Django versions](https://img.shields.io/pypi/djversions/djangosaml2)
![Documentation Status](https://readthedocs.org/projects/djangosaml2/badge/?version=latest)
![License](https://img.shields.io/badge/python-3.7%20%7C%203.8%20%7C%203.9%20%7C%203.10-blue.svg)
![License](https://img.shields.io/badge/python-3.8%20%7C%203.9%20%7C%203.10%20%7C%203.11-blue.svg)


A Django application that builds a Fully Compliant SAML2 Service Provider on top of PySAML2 library.
Expand Down
7 changes: 4 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -36,16 +36,17 @@ def read(*rnames):
"Environment :: Web Environment",
"Framework :: Django",
"Framework :: Django :: 3.2",
"Framework :: Django :: 4.0",
"Framework :: Django :: 4.1",
"Framework :: Django :: 4.2",
"Framework :: Django :: 5.0",
"Intended Audience :: Developers",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"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",
"Topic :: Internet :: WWW/HTTP",
"Topic :: Internet :: WWW/HTTP :: WSGI",
"Topic :: Security",
Expand All @@ -61,5 +62,5 @@ def read(*rnames):
packages=find_packages(exclude=["tests", "tests.*"]),
include_package_data=True,
zip_safe=False,
install_requires=["defusedxml>=0.4.1", "Django>=2.2,<5", "pysaml2>=6.5.1"],
install_requires=["defusedxml>=0.4.1", "Django>=3.2", "pysaml2>=6.5.1"],
)
7 changes: 4 additions & 3 deletions tox.ini
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tox]
envlist =
py{3.7,3.8,3.9,3.10}-django{3.2,4.0,4.1}
py{3.8,3.9,3.10,3.11}-django{3.2,4.1,4.2,5.0}

[testenv]
commands =
Expand All @@ -9,8 +9,9 @@ commands =

deps =
django3.2: django~=3.2
django4.0: django~=4.0
django4.1: django==4.1b1
django4.1: django~=4.1
django4.2: django~=4.2
django5.0: django==5.0a1
djangomaster: https://github.com/django/django/archive/master.tar.gz
.

Expand Down

0 comments on commit 1915dfb

Please sign in to comment.