Skip to content

Commit 101b5f5

Browse files
Restore support for Python 3.7
1 parent 053aa70 commit 101b5f5

2 files changed

Lines changed: 5 additions & 2 deletions

File tree

.gitignore

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
.vscode
2-
venv
2+
venv*
3+
dist
34
htmlcov
45
.coverage
56
__pycache__

pyproject.toml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,11 +10,12 @@ authors = [
1010
]
1111
description = "Framework to handle authentication and authorization."
1212
readme = "README.md"
13-
requires-python = ">=3.8"
13+
requires-python = ">=3.7"
1414
classifiers = [
1515
"Development Status :: 3 - Alpha",
1616
"License :: OSI Approved :: MIT License",
1717
"Programming Language :: Python :: 3",
18+
"Programming Language :: Python :: 3.7",
1819
"Programming Language :: Python :: 3.8",
1920
"Programming Language :: Python :: 3.9",
2021
"Programming Language :: Python :: 3.10",
@@ -24,6 +25,7 @@ classifiers = [
2425
keywords = ["authentication", "authorization", "identity", "claims", "strategy"]
2526
dependencies = [
2627
"neoteroi-di<=2.0.0",
28+
"typing_extensions; python_version < '3.8'",
2729
]
2830

2931
[project.optional-dependencies]

0 commit comments

Comments
 (0)