Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
# Changelog

## 7.5.3 (2025-09-17)

- Update python version to `>=3.9.2` to leverage newer language feature and maintain support for dependencies
- deps: update dependencies `cryptography@45.0.7` and `pyopenssl@^25.3.0`

## 7.5.2 (2025-02-10)

- Include the XSD of the XML Encryption Syntax and Processing Version 1.1 to the schema validator
Expand Down
77 changes: 44 additions & 33 deletions poetry.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 4 additions & 4 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "pysaml2"
version = "7.5.2"
version = "7.5.3"
description = "Python implementation of SAML Version 2 Standard"
license = "Apache-2.0"
authors = ["IdentityPython <discuss@idpy.org>"]
Expand Down Expand Up @@ -36,13 +36,13 @@ merge_metadata = "saml2.tools.merge_metadata:main"
parse_xsd2 = "saml2.tools.parse_xsd2:main"

[tool.poetry.dependencies]
python = "^3.9"
cryptography = ">=3.1"
python = ">=3.9.2"
cryptography = "45.0.7"
defusedxml = "*"
importlib-metadata = {version = ">=1.7.0", python = "<3.8"}
importlib-resources = {python = "<3.9", version = "*"}
paste = {optional = true, version = "*"}
pyopenssl = "<24.3.0"
pyopenssl = "^25.3.0"
python-dateutil = "*"
pytz = "*"
"repoze.who" = {optional = true, version = "*"}
Expand Down