Skip to content

Commit 837445c

Browse files
committed
added python3.11
1 parent e6d905c commit 837445c

File tree

4 files changed

+7
-3
lines changed

4 files changed

+7
-3
lines changed

.github/workflows/python-package.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,11 @@ jobs:
1515
runs-on: ubuntu-latest
1616
strategy:
1717
matrix:
18-
python-version: ["3.8", "3.9", "3.10"]
18+
python-version: ["3.8", "3.9", "3.10", "3.11"]
1919
django-version: ["3.2", "4.0", "4.1"]
20+
exclude:
21+
- python-version: "3.11"
22+
django-version: "3.2"
2023

2124
steps:
2225
- 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.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: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -45,6 +45,7 @@ def read(*rnames):
4545
"Programming Language :: Python :: 3.8",
4646
"Programming Language :: Python :: 3.9",
4747
"Programming Language :: Python :: 3.10",
48+
"Programming Language :: Python :: 3.11",
4849
"Topic :: Internet :: WWW/HTTP",
4950
"Topic :: Internet :: WWW/HTTP :: WSGI",
5051
"Topic :: Security",

tox.ini

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tox]
22
envlist =
3-
py{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.0,4.1}
44

55
[testenv]
66
commands =

0 commit comments

Comments
 (0)