diff options
author | robot-piglet <[email protected]> | 2025-07-20 23:33:24 +0300 |
---|---|---|
committer | robot-piglet <[email protected]> | 2025-07-20 23:43:08 +0300 |
commit | 0c5cb696ab2b8f4792fa8ba726ec8204b8debb51 (patch) | |
tree | 8a5ad9c0d898939b005b1e496ef52b52a0ba88eb /contrib/python | |
parent | 90357c2d5958bb7a897810faf2495a03a5d8ee64 (diff) |
Intermediate changes
commit_hash:c606ac0539b671d24b6d84a69c3093e329c5b323
Diffstat (limited to 'contrib/python')
-rw-r--r-- | contrib/python/scramp/.dist-info/METADATA | 9 | ||||
-rw-r--r-- | contrib/python/scramp/README.md | 5 | ||||
-rw-r--r-- | contrib/python/scramp/scramp/__init__.py | 2 | ||||
-rw-r--r-- | contrib/python/scramp/ya.make | 2 |
4 files changed, 14 insertions, 4 deletions
diff --git a/contrib/python/scramp/.dist-info/METADATA b/contrib/python/scramp/.dist-info/METADATA index 0058fe6943a..e3fded9df5b 100644 --- a/contrib/python/scramp/.dist-info/METADATA +++ b/contrib/python/scramp/.dist-info/METADATA @@ -1,6 +1,6 @@ -Metadata-Version: 2.3 +Metadata-Version: 2.4 Name: scramp -Version: 1.4.5 +Version: 1.4.6 Summary: An implementation of the SCRAM protocol. Project-URL: Homepage, https://github.com/tlocke/scramp Author: The Contributors @@ -409,6 +409,11 @@ Run `tox` to make sure all tests pass, then update the release notes, then do: ## Release Notes +### Version 1.4.6, 2025-07-05 + +- Drop support for Python 3.8, and add support for 3.13 + + ### Version 1.4.5, 2024-04-13 - Drop support for Python 3.7, which means we're not dependent on `importlib-metadata` anymore. diff --git a/contrib/python/scramp/README.md b/contrib/python/scramp/README.md index 43641445be5..71793c1b378 100644 --- a/contrib/python/scramp/README.md +++ b/contrib/python/scramp/README.md @@ -383,6 +383,11 @@ Run `tox` to make sure all tests pass, then update the release notes, then do: ## Release Notes +### Version 1.4.6, 2025-07-05 + +- Drop support for Python 3.8, and add support for 3.13 + + ### Version 1.4.5, 2024-04-13 - Drop support for Python 3.7, which means we're not dependent on `importlib-metadata` anymore. diff --git a/contrib/python/scramp/scramp/__init__.py b/contrib/python/scramp/scramp/__init__.py index 8bfbcd20725..4d7a7083e5e 100644 --- a/contrib/python/scramp/scramp/__init__.py +++ b/contrib/python/scramp/scramp/__init__.py @@ -7,6 +7,6 @@ from scramp.core import ( make_channel_binding, ) -__all__ = [ScramClient, ScramMechanism, ScramException, make_channel_binding] +__all__ = ["ScramClient", "ScramException", "ScramMechanism", "make_channel_binding"] __version__ = version("scramp") diff --git a/contrib/python/scramp/ya.make b/contrib/python/scramp/ya.make index 787e9aa7e5c..99e03e01548 100644 --- a/contrib/python/scramp/ya.make +++ b/contrib/python/scramp/ya.make @@ -2,7 +2,7 @@ PY3_LIBRARY() -VERSION(1.4.5) +VERSION(1.4.6) LICENSE(MIT-0) |