diff --git a/hypothesis-6.122.1.tar.gz b/hypothesis-6.122.1.tar.gz deleted file mode 100644 index 2ea38c0aa7e662fa0f0a0e94a37a26ae573728da..0000000000000000000000000000000000000000 Binary files a/hypothesis-6.122.1.tar.gz and /dev/null differ diff --git a/hypothesis-6.135.16.tar.gz b/hypothesis-6.135.16.tar.gz new file mode 100644 index 0000000000000000000000000000000000000000..aab3b1fb9a54e970a033014dae5f8e0b002b16ad Binary files /dev/null and b/hypothesis-6.135.16.tar.gz differ diff --git a/python-hypothesis.spec b/python-hypothesis.spec index b2137a206b18659157d1a9bbab942f91b7280d5e..a72c576d867f845c524537ef3b15b2025ec3c5c4 100644 --- a/python-hypothesis.spec +++ b/python-hypothesis.spec @@ -1,9 +1,9 @@ %{?python_enable_dependency_generator} Name: python-hypothesis -Version: 6.122.1 +Version: 6.135.16 Release: 1 Summary: based testing for python code -License: MPLv2.0 +License: MPL-2.0 URL: https://github.com/HypothesisWorks/hypothesis Source0: https://files.pythonhosted.org/packages/source/h/hypothesis/hypothesis-%{version}.tar.gz BuildRequires: python-sphinx @@ -20,6 +20,7 @@ Summary: based testing for python code %{?python_provide:%python_provide python3-hypothesis} Obsoletes: platform-python-hypothesis < %{version}-%{release} BuildRequires: python3-devel python3-setuptools python3dist(attrs) +BuildRequires: python3-pip python3-wheel %description -n python3-hypothesis This package provides a library called hypothesis for testing Python code, @@ -37,23 +38,33 @@ Help document for the python-hypothesis %autosetup -n hypothesis-%{version} -p1 %build -%py3_build +%pyproject_build %install -%py3_install +%pyproject_install %files help -%doc README.rst +%doc README.md %files -n python3-hypothesis %license LICENSE.txt %{python3_sitelib}/_hypothesis_*.py %{python3_sitelib}/__pycache__/_hypothesis_*.pyc %{_bindir}/hypothesis -%{python3_sitelib}/hypothesis-*.egg-info +%{python3_sitelib}/hypothesis-%{version}.dist-info %{python3_sitelib}/hypothesis/ %changelog +* Thu Jun 26 2025 Ge Wang - 6.135.16-1 +- Update to 6.135.16: + * Fixes an error when the "_pytest" module is present in "sys.modules", + but not the "_pytest.outcomes" or "_pytest.fixtures" modules. This + can happen with code that imports just "_pytest", without importing + "pytest". + * Fixes a substantial performance regression in stateful tests from + computing string representations, present since version 6.131.20. + * Fix a rare race condition in internal cache eviction logic. + * Thu Dec 05 2024 xu_ping <707078654@qq.com> - 6.122.1-1 - Update package to version 6.122.1 * Fix from_type() on collections.abc.Callable returning None.