-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update required python version (#24)
- Loading branch information
1 parent
330c89f
commit 137b755
Showing
8 changed files
with
1,928 additions
and
1,388 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -13,7 +13,7 @@ branch = true | |
# Formatting tools configuration | ||
[tool.black] | ||
line-length = 99 | ||
target-version = ["py38"] | ||
target-version = ["py312"] | ||
|
||
[tool.coverage.report] | ||
fail_under = 95 | ||
|
@@ -62,19 +62,19 @@ disable = "wrong-import-order" | |
|
||
[tool.poetry] | ||
name = "flask-multipass-saml-groups" | ||
version = "0.3.0" | ||
version = "1.0.0" | ||
description = "This package provides an identity provider for Flask-Multipass, which allows you to use SAML groups. It is designed to be used as a plugin for Indico." | ||
authors = ["canonical-is-devops <[email protected]>"] | ||
license = "Apache-2.0 license" | ||
readme = "README.md" | ||
|
||
[tool.poetry.dependencies] | ||
python = ">=3.10, <3.12" | ||
flask-multipass = {extras = ["saml"], version = "0.4.9"} | ||
python = "~=3.12.2" | ||
flask-multipass = {extras = ["saml"], version = "0.5.4"} | ||
# The package version here can force an upgrade of indico when the plugin is used | ||
# thus we must only specify compatibility rather than pinning the exact version | ||
indico = ">=3.2.8, <4" | ||
flask_sqlalchemy = "3.0.3" | ||
indico = ">=3.3.1, <4" | ||
flask_sqlalchemy = "3.0.5" | ||
|
||
[build-system] | ||
requires = ["poetry-core"] | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -8,9 +8,9 @@ author_email = [email protected] | |
[options] | ||
packages = find: | ||
include_package_data = true | ||
python_requires = ~=3.8 | ||
python_requires = ~=3.12.2 | ||
install_requires = | ||
flask-multipass[saml]>=0.4.8 | ||
flask-multipass[saml]>=0.5.4 | ||
|
||
[options.package_data] | ||
flask_multipass_saml_groups = migrations/*.py | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters