Skip to content

Commit 1915dfb

Browse files
author
Giuseppe De Marco
authored
Merge pull request #386 from g-as/bump_versions
Bumped handled python versions & prepared for Django 5.0
2 parents 4b449e4 + d384877 commit 1915dfb

File tree

4 files changed

+17
-11
lines changed

4 files changed

+17
-11
lines changed

.github/workflows/python-package.yml

Lines changed: 8 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -15,11 +15,15 @@ jobs:
1515
runs-on: ubuntu-latest
1616
strategy:
1717
matrix:
18-
python-version: ["3.8", "3.9", "3.10"]
19-
django-version: ["3.2", "4.0", "4.1"]
20-
include:
21-
- python-version: "3.7"
18+
python-version: ["3.8", "3.9", "3.10", "3.11"]
19+
django-version: ["3.2", "4.1", "4.2", "5.0"]
20+
exclude:
21+
- python-version: "3.11"
2222
django-version: "3.2"
23+
- python-version: "3.8"
24+
django-version: "5.0"
25+
- python-version: "3.9"
26+
django-version: "5.0"
2327

2428
steps:
2529
- uses: actions/checkout@v2

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ djangosaml2
77
![Python version](https://img.shields.io/badge/license-Apache%202-blue.svg)
88
![Django versions](https://img.shields.io/pypi/djversions/djangosaml2)
99
![Documentation Status](https://readthedocs.org/projects/djangosaml2/badge/?version=latest)
10-
![License](https://img.shields.io/badge/python-3.7%20%7C%203.8%20%7C%203.9%20%7C%203.10-blue.svg)
10+
![License](https://img.shields.io/badge/python-3.8%20%7C%203.9%20%7C%203.10%20%7C%203.11-blue.svg)
1111

1212

1313
A Django application that builds a Fully Compliant SAML2 Service Provider on top of PySAML2 library.

setup.py

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -36,16 +36,17 @@ def read(*rnames):
3636
"Environment :: Web Environment",
3737
"Framework :: Django",
3838
"Framework :: Django :: 3.2",
39-
"Framework :: Django :: 4.0",
4039
"Framework :: Django :: 4.1",
40+
"Framework :: Django :: 4.2",
41+
"Framework :: Django :: 5.0",
4142
"Intended Audience :: Developers",
4243
"License :: OSI Approved :: Apache Software License",
4344
"Operating System :: OS Independent",
4445
"Programming Language :: Python",
45-
"Programming Language :: Python :: 3.7",
4646
"Programming Language :: Python :: 3.8",
4747
"Programming Language :: Python :: 3.9",
4848
"Programming Language :: Python :: 3.10",
49+
"Programming Language :: Python :: 3.11",
4950
"Topic :: Internet :: WWW/HTTP",
5051
"Topic :: Internet :: WWW/HTTP :: WSGI",
5152
"Topic :: Security",
@@ -61,5 +62,5 @@ def read(*rnames):
6162
packages=find_packages(exclude=["tests", "tests.*"]),
6263
include_package_data=True,
6364
zip_safe=False,
64-
install_requires=["defusedxml>=0.4.1", "Django>=2.2,<5", "pysaml2>=6.5.1"],
65+
install_requires=["defusedxml>=0.4.1", "Django>=3.2", "pysaml2>=6.5.1"],
6566
)

tox.ini

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tox]
22
envlist =
3-
py{3.7,3.8,3.9,3.10}-django{3.2,4.0,4.1}
3+
py{3.8,3.9,3.10,3.11}-django{3.2,4.1,4.2,5.0}
44

55
[testenv]
66
commands =
@@ -9,8 +9,9 @@ commands =
99

1010
deps =
1111
django3.2: django~=3.2
12-
django4.0: django~=4.0
13-
django4.1: django==4.1b1
12+
django4.1: django~=4.1
13+
django4.2: django~=4.2
14+
django5.0: django==5.0a1
1415
djangomaster: https://github.com/django/django/archive/master.tar.gz
1516
.
1617

0 commit comments

Comments
 (0)