Skip to content

Commit 14d25fc

Browse files
committed
Version bump, remove python3.6 support
1 parent 250f2e3 commit 14d25fc

File tree

3 files changed

+5
-6
lines changed

3 files changed

+5
-6
lines changed

.github/workflows/testing.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ jobs:
3030
strategy:
3131
fail-fast: false
3232
matrix:
33-
python-version: [ "3.6", "3.7", "3.8", "3.9", "3.10" ]
33+
python-version: [ "3.7", "3.8", "3.9", "3.10" ]
3434
django-version: [ "2.2", "3.0", "3.1", "3.2", "4.0" ]
3535
drf-version: [ "3.10", "3.11", "3.12" ]
3636
exclude:
@@ -57,7 +57,7 @@ jobs:
5757
uses: actions/cache@v2
5858
with:
5959
path: .venv
60-
key: ${{ hashFiles('**/poetry.lock') }}-${{ matrix.python-version }}
60+
key: ${{ hashFiles('**/poetry.lock') }}-${{ matrix.python-version }}-1
6161
- run: poetry env use ${{ matrix.python-version }} && poetry install --no-root
6262
if: steps.cached-poetry-dependencies.outputs.cache-hit != 'true'
6363
- run: |

django_auth_adfs/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,4 +4,4 @@
44
Adding imports here will break setup.py
55
"""
66

7-
__version__ = '1.9.5'
7+
__version__ = '1.9.6'

pyproject.toml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = 'django-auth-adfs'
3-
version = "1.9.5" # Remember to also change __init__.py version
3+
version = "1.9.6" # Remember to also change __init__.py version
44
description = 'A Django authentication backend for Microsoft ADFS and AzureAD'
55
authors = ['Joris Beckers <[email protected]>']
66
maintainers = ['Jonas Krüger Svensson <[email protected]>', 'Sondre Lillebø Gundersen <[email protected]>']
@@ -23,7 +23,6 @@ classifiers = [
2323
'License :: OSI Approved :: BSD License',
2424
'Programming Language :: Python',
2525
'Programming Language :: Python :: 3',
26-
'Programming Language :: Python :: 3.6',
2726
'Programming Language :: Python :: 3.7',
2827
'Programming Language :: Python :: 3.8',
2928
'Programming Language :: Python :: 3.9',
@@ -36,7 +35,7 @@ classifiers = [
3635
]
3736

3837
[tool.poetry.dependencies]
39-
python = '^3.6'
38+
python = '^3.7'
4039
django = [
4140
{ version = '^2.2 || ^3', python = '<=3.7' },
4241
{ version = '^2.2 || ^3 || ^4', python = '>=3.8' },

0 commit comments

Comments
 (0)