Skip to content

Commit 65977ff

Browse files
authored
added support for python3.10 (#318)
1 parent 3a12949 commit 65977ff

File tree

4 files changed

+7
-3
lines changed

4 files changed

+7
-3
lines changed

Diff for: .github/workflows/python-package.yml

+4-1
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]
18+
python-version: ["3.8", "3.9"]
1919
django-version: ["2.2", "3.1", "3.2", "4.0"]
20+
include:
21+
- python-version: "3.10"
22+
django-version: "4.0"
2023

2124
steps:
2225
- uses: actions/checkout@v2

Diff for: README.md

+1-1
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-blue.svg)
10+
![License](https://img.shields.io/badge/python-3.7%20%7C%203.8%20%7C%203.9%20%7C%203.10-blue.svg)
1111

1212

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

Diff for: setup.py

+1
Original file line numberDiff line numberDiff line change
@@ -44,6 +44,7 @@ def read(*rnames):
4444
"Programming Language :: Python :: 3.7",
4545
"Programming Language :: Python :: 3.8",
4646
"Programming Language :: Python :: 3.9",
47+
"Programming Language :: Python :: 3.10",
4748
"Topic :: Internet :: WWW/HTTP",
4849
"Topic :: Internet :: WWW/HTTP :: WSGI",
4950
"Topic :: Security",

Diff for: tox.ini

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tox]
22
envlist =
3-
py{3.6,3.7,3.8,3.9}-django{2.2,3.1,3.2,4.0}
3+
py{3.6,3.7,3.8,3.9,3.10}-django{2.2,3.1,3.2,4.0}
44

55
[testenv]
66
commands =

0 commit comments

Comments
 (0)