diff options
| author | robot-piglet <[email protected]> | 2026-02-10 17:46:49 +0300 |
|---|---|---|
| committer | robot-piglet <[email protected]> | 2026-02-10 18:37:30 +0300 |
| commit | ae887d63d247ca0cff20ee6514916c530655e2a7 (patch) | |
| tree | 273587ff49debceb2f8c255189f4cefaa9f10b17 /contrib/python/hypothesis | |
| parent | 066dd77071046f85f7da7cf6d68acbf4141be16c (diff) | |
Intermediate changes
commit_hash:fdd941ffe1bfd859a5fd99c2f0d7251bd08ab465
Diffstat (limited to 'contrib/python/hypothesis')
4 files changed, 5 insertions, 5 deletions
diff --git a/contrib/python/hypothesis/py3/.dist-info/METADATA b/contrib/python/hypothesis/py3/.dist-info/METADATA index b0b617d56b8..9b0ea14cc8e 100644 --- a/contrib/python/hypothesis/py3/.dist-info/METADATA +++ b/contrib/python/hypothesis/py3/.dist-info/METADATA @@ -1,6 +1,6 @@ Metadata-Version: 2.4 Name: hypothesis -Version: 6.150.3 +Version: 6.151.0 Summary: The property-based testing library for Python Author-email: "David R. MacIver and Zac Hatfield-Dodds" <[email protected]> License-Expression: MPL-2.0 diff --git a/contrib/python/hypothesis/py3/hypothesis/extra/array_api.py b/contrib/python/hypothesis/py3/hypothesis/extra/array_api.py index bba7974ccf0..511402193a6 100644 --- a/contrib/python/hypothesis/py3/hypothesis/extra/array_api.py +++ b/contrib/python/hypothesis/py3/hypothesis/extra/array_api.py @@ -58,10 +58,10 @@ __all__ = [ ] -RELEASED_VERSIONS = ("2021.12", "2022.12", "2023.12", "2024.12") +RELEASED_VERSIONS = ("2021.12", "2022.12", "2023.12", "2024.12", "2025.12") NOMINAL_VERSIONS = (*RELEASED_VERSIONS, "draft") assert sorted(NOMINAL_VERSIONS) == list(NOMINAL_VERSIONS) # sanity check -NominalVersion = Literal["2021.12", "2022.12", "2023.12", "2024.12", "draft"] +NominalVersion = Literal["2021.12", "2022.12", "2023.12", "2024.12", "2025.12", "draft"] assert get_args(NominalVersion) == NOMINAL_VERSIONS # sanity check diff --git a/contrib/python/hypothesis/py3/hypothesis/version.py b/contrib/python/hypothesis/py3/hypothesis/version.py index 91bad19fb86..ccf10bfaaa6 100644 --- a/contrib/python/hypothesis/py3/hypothesis/version.py +++ b/contrib/python/hypothesis/py3/hypothesis/version.py @@ -8,5 +8,5 @@ # v. 2.0. If a copy of the MPL was not distributed with this file, You can # obtain one at https://mozilla.org/MPL/2.0/. -__version_info__ = (6, 150, 3) +__version_info__ = (6, 151, 0) __version__ = ".".join(map(str, __version_info__)) diff --git a/contrib/python/hypothesis/py3/ya.make b/contrib/python/hypothesis/py3/ya.make index 8e403e25d33..60d4b15be6b 100644 --- a/contrib/python/hypothesis/py3/ya.make +++ b/contrib/python/hypothesis/py3/ya.make @@ -2,7 +2,7 @@ PY3_LIBRARY() -VERSION(6.150.3) +VERSION(6.151.0) LICENSE(MPL-2.0) |
