diff --git a/.gitignore b/.gitignore index 84b770e..19f4bd8 100644 --- a/.gitignore +++ b/.gitignore @@ -1,2 +1 @@ -/hypothesis-*.tar.gz -/hypothesis-*/ +SOURCES/hypothesis-6.104.2.tar.gz diff --git a/.python-hypothesis.metadata b/.python-hypothesis.metadata new file mode 100644 index 0000000..d124daf --- /dev/null +++ b/.python-hypothesis.metadata @@ -0,0 +1 @@ +520bfa49405c80963631d6c71d8d9d4ca2d8fa30 SOURCES/hypothesis-6.104.2.tar.gz diff --git a/SPECS/python-hypothesis.spec b/SPECS/python-hypothesis.spec new file mode 100644 index 0000000..dab5e2c --- /dev/null +++ b/SPECS/python-hypothesis.spec @@ -0,0 +1,546 @@ +## START: Set by rpmautospec +## (rpmautospec version 0.7.3) +## RPMAUTOSPEC: autorelease, autochangelog +%define autorelease(e:s:pb:n) %{?-p:0.}%{lua: + release_number = 7; + base_release_number = tonumber(rpm.expand("%{?-b*}%{!?-b:1}")); + print(release_number + base_release_number - 1); +}%{?-e:.%{-e*}}%{?-s:.%{-s*}}%{!?-n:%{?dist}} +## END: Set by rpmautospec + +%bcond_without tests + +%if %{defined rhel} +# The cli and ghostwriter extras require black, which is not currently in +# RHEL/EPEL 10. It was requested in rhbz#2319803, but the maintainer doesn't +# think it's a good fit due to the fact that black doesn't have a stable Python +# API. +%bcond_with cli +%bcond_with ghostwriter +# The django extra requires django, which is not currently in RHEL/EPEL 10. +# It has been requested in rhbz#2319809. +%bcond_with django +# The codemods extra requires libcst, which is not currently in RHEL/EPEL 10. +# It has been requested in rhbz#2319805. +%bcond_with codemods +# Building the docs need several sphinx extensions (sphinx-hoverxref, +# sphinx-jsonschema, sphinx-rtd-theme, sphinx_selective_exclude) that are not +# currently in RHEL/EPEL 10. +%bcond_with doc +%else +%bcond_without cli +%bcond_without ghostwriter +%bcond_without django +%bcond_without codemods +%bcond_without doc +%endif + +Name: python-hypothesis +Version: 6.104.2 +Release: %autorelease +Summary: Library for property based testing + +License: MPL-2.0 +URL: https://github.com/HypothesisWorks/hypothesis +Source0: %{url}/archive/hypothesis-python-%{version}/hypothesis-%{version}.tar.gz + +BuildArch: noarch + +BuildRequires: python%{python3_pkgversion}-devel +BuildRequires: pyproject-rpm-macros >= 0-43 + +%if %{with tests} +# optional test dependencies: +BuildRequires: %{py3_dist typing_extensions} +%endif + +%if %{with doc} +BuildRequires: %{_bindir}/sphinx-build +BuildRequires: %{py3_dist sphinx-hoverxref} +BuildRequires: %{py3_dist sphinx-jsonschema} +BuildRequires: %{py3_dist sphinx-rtd-theme} +BuildRequires: %{py3_dist sphinx_selective_exclude} +%endif + + +%global _description %{expand: +Hypothesis is a library for testing your Python code against a much +larger range of examples than you would ever want to write by +hand. It’s based on the Haskell library, Quickcheck, and is designed +to integrate seamlessly into your existing Python unit testing work +flow.} + +%description %{_description} + + +%package -n python%{python3_pkgversion}-hypothesis +Summary: %{summary} + +%description -n python%{python3_pkgversion}-hypothesis %{_description} + + +%global extras pytz,dateutil,lark,numpy,pandas,pytest,redis,zoneinfo%{?with_cli:,cli}%{?with_ghostwriter:,ghostwriter}%{?with_django:,django}%{?with_codemods:,codemods} +# extras with missing deps: +# dpcontracts: dpcontracts +# crosshair: hypothesis-crosshair, crosshair-tool +# extras with missing deps on RHEL/EPEL: +# cli: black, rich +# ghostwriter: black +# django: django +# codemods: libcst +%{pyproject_extras_subpkg -n python%{python3_pkgversion}-hypothesis %{extras}} + + +%prep +%autosetup -n hypothesis-hypothesis-python-%{version}/hypothesis-python -p2 +# disable Sphinx extensions that require Internet access +sed -i -e '/sphinx.ext.intersphinx/d' docs/conf.py +# disable Sphinx non-available extensions +sed -i -e '/sphinx_codeautolink/d' docs/conf.py +# disable Sphinx pinning +sed -i -e 's/needs_sphinx/no_needs_sphinx/' docs/conf.py + + +%generate_buildrequires +%pyproject_buildrequires %{?with_tests:../requirements/test.in -x %{extras}} + + +%build +%pyproject_wheel + +%if %{with doc} +PYTHONPATH=src READTHEDOCS=True sphinx-build -b man docs docs/_build/man +%endif + + +%install +%pyproject_install +%pyproject_save_files -l hypothesis '_hypothesis_*' + +%if %{with doc} +install -Dpm0644 -t %{buildroot}%{_mandir}/man1 docs/_build/man/hypothesis.1 +%endif + + +%if %{with tests} +%check +k="" +%pytest -v -n auto -k "$k" \ +%if %{without ghostwriter} + --ignore tests/ghostwriter \ +%endif +%if %{without codemods} + --ignore tests/codemods --ignore tests/patching \ +%endif + --ignore tests/dpcontracts \ + --ignore tests/redis \ + +# The BRP that handles bytecompilation already run at the end of %%install. +# This autogenerated file gets re-generated during tests, +# the tests asserts the content is identical, but the mtime is changed anyway. +# Since %%pytest disables byte-compilation, we need to update the pycs manually: +%py_byte_compile %{python3} %{buildroot}%{python3_sitelib}/hypothesis/internal/conjecture/shrinking/learned_dfas.py +%endif + + +%files -n python%{python3_pkgversion}-hypothesis -f %{pyproject_files} +%doc README.rst +%{_bindir}/hypothesis +%if %{with doc} +%{_mandir}/man1/hypothesis.1* +%endif + + +%changelog +* Tue Dec 17 2024 Arkady L. Shane - 6.104.2-7 +- Rebuilt for MSVSphere 10 + +## START: Generated by rpmautospec +* Fri Oct 25 2024 Carl George - 6.104.2-7 +- Enable tests for EPEL builds +- Disable cli, ghostwriter, django, and codemods extras on EPEL + +* Fri Jul 19 2024 Fedora Release Engineering - 6.104.2-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_41_Mass_Rebuild + +* Tue Jul 02 2024 Miro Hrončok - 6.104.2-2 +- Only package one of the LICENSE.txt files + +* Tue Jul 02 2024 Miro Hrončok - 6.104.2-1 +- Update to 6.104.2 +- Fixes: rhbz#2265632 +- Fixes: rhbz#2293084 + +* Sun Jun 09 2024 Python Maint - 6.98.8-4 +- Rebuilt for Python 3.13 + +* Fri Jun 07 2024 Python Maint - 6.98.8-3 +- Bootstrap for Python 3.13 + +* Sat Apr 13 2024 Miroslav Suchý - 6.98.8-2 +- convert MPLv2.0 license to SPDX + +* Wed Feb 21 2024 Lumir Balhar - 6.98.8-1 +- Update to 6.98.8 (rhbz#2259445) + +* Fri Jan 26 2024 Fedora Release Engineering - 6.96.1-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild + +* Sat Jan 20 2024 Michel Lind - 6.96.1-1 +- Update to 6.96.1 (rhbz#2229456) + +* Thu Aug 03 2023 Miro Hrončok - 6.82.0-2 +- lark is now available in Fedora, use it + +* Mon Jul 31 2023 Michel Alexandre Salim - 6.82.0-1 +- Update to 6.82.0 (rhbz#2162839) +- Deselect `test_make_full_patch[covering]` for now (rhbz#2226209) + +* Fri Jul 21 2023 Fedora Release Engineering - 6.62.1-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_39_Mass_Rebuild + +* Thu Jul 13 2023 Python Maint - 6.62.1-5 +- Rebuilt for Python 3.12 + +* Thu Jun 15 2023 Python Maint - 6.62.1-4 +- Bootstrap for Python 3.12 + +* Tue Mar 14 2023 Yaakov Selkowitz - 6.62.1-3 +- Disable docs and tests by default in ELN builds + +* Fri Jan 20 2023 Fedora Release Engineering - 6.62.1-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_38_Mass_Rebuild + +* Tue Jan 17 2023 Miro Hrončok - 6.62.1-1 +- Update to 6.62.1 +- Fixes: rhbz#2138440 + +* Mon Oct 24 2022 Miro Hrončok - 6.56.3-1 +- Update to 6.56.3 + +* Mon Oct 24 2022 Miro Hrončok - 6.49.1-3 +- Don't skip a fixed test + +* Mon Oct 24 2022 Miro Hrončok - 6.49.1-2 +- Add the codemods extra package, libcst is now available + +* Mon Oct 24 2022 Miro Hrončok - 6.49.1-1 +- Update to 6.49.1 + +* Fri Jul 22 2022 Fedora Release Engineering - 6.45.0-7 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_37_Mass_Rebuild + +* Wed Jul 13 2022 Miro Hrončok - 6.45.0-6 +- Backport a fix for Python 3.11.0b4 + +* Thu Jul 07 2022 Miro Hrončok - 6.45.0-5 +- Skip one hanging test + +* Thu Jul 07 2022 Miro Hrončok - 6.45.0-4 +- Python 3.11 fixes + +* Fri Jun 17 2022 Python Maint - 6.45.0-3 +- Rebuilt for Python 3.11 + +* Mon Jun 13 2022 Python Maint - 6.45.0-2 +- Bootstrap for Python 3.11 + +* Tue Apr 26 2022 Lumir Balhar - 6.45.0-1 +- Update to 6.45.0 + +* Thu Mar 03 2022 Miro Hrončok - 6.39.1-1 +- Update to 6.39.1, fix regression in @proxies + +* Wed Mar 02 2022 Michel Alexandre Salim - 6.39.0-1 +- Update to 6.39.0 (resolves: rhbz#2048882) + +* Fri Jan 21 2022 Michel Alexandre Salim - 6.36.0-1 +- Update to 6.36.0 (resolves: rhbz#2022978) + +* Fri Jan 21 2022 Fedora Release Engineering - 6.24.2-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild + +* Fri Nov 12 2021 Lumír Balhar - 6.24.2-1 +- Update to 6.24.2 +Resolves: rhbz#1986184 + +* Mon Jul 19 2021 Miro Hrončok - 6.14.3-1 +- Update to 6.14.3 +- Fixes: rhbz#1937016 +- Fixes: rhbz#1902285 + +* Fri Jun 04 2021 Python Maint - 6.6.0-4 +- Rebuilt for Python 3.10 + +* Wed Jun 02 2021 Python Maint - 6.6.0-3 +- Bootstrap for Python 3.10 + +* Thu Mar 11 2021 Miro Hrončok - 6.6.0-2 +- Skip test_data_frames_with_timestamp_columns on s390x until Pandas is fixed + +* Mon Mar 08 2021 Miro Hrončok - 6.6.0-1 +- Update to 6.6.0 +- Add subpackages with extras +- Fix python-bytecode-inconsistent-mtime of learned_dfas.py +- Fixes: rhbz#1902400 + +* Mon Feb 01 2021 Miro Hrončok - 5.43.9-1 +- Update to 5.43.9 + +* Wed Jan 27 2021 Fedora Release Engineering - 5.41.3-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild + +* Sun Nov 22 2020 Michel Alexandre Salim - 5.41.3-1 +- Update to 5.41.3 +- Use py3_dist macro +- Disable Redis tests (missing dependency) +- Enable lark-parser tests + +* Fri Nov 13 2020 Miro Hrončok - 5.29.4-2 +- Remove build dependencies on mock and coverage + +* Fri Aug 28 2020 Michel Alexandre Salim - 5.29.4-1 +- Update to 5.29.4 + +* Fri Aug 28 2020 Michel Alexandre Salim - 5.29.3-1 +- Update to 5.29.3 + +* Tue Aug 25 2020 Michel Alexandre Salim - 5.29.0-1 +- Update to 5.29.0 + +* Wed Jul 29 2020 Fedora Release Engineering - 5.20.3-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild + +* Tue Jul 21 2020 Michel Alexandre Salim - 5.20.3-1 +- Update to 5.20.3 + +* Tue May 26 2020 Miro Hrončok - 5.15.1-3 +- Rebuilt for Python 3.9 + +* Fri May 22 2020 Miro Hrončok - 5.15.1-2 +- Bootstrap for Python 3.9 + +* Thu May 21 2020 Michel Alexandre Salim - 5.15.1-1 +- Update to 5.15.1 +- Upstream now verifies against Python 3.9 pre-releases in CI + +* Sat May 16 2020 Michel Alexandre Salim - 5.14.0-1 +- Update to 5.14.0 + +* Wed May 13 2020 Michel Alexandre Salim - 5.13.1-1 +- Update to 5.13.1 +- Python 3.9 fix now upstreamed + +* Tue May 12 2020 Michel Alexandre Salim - 5.13.0-1 +- Update to 5.13.0 +- Fix NamedTuple detection on Python 3.9 + +* Mon May 11 2020 Michel Alexandre Salim - 5.12.0-1 +- Update to 5.12.0 + +* Wed May 6 2020 Michel Alexandre Salim - 5.10.5-1 +- Update to 5.10.5 + +* Sat Apr 25 2020 Michel Alexandre Salim - 5.10.4-1 +- Update to 5.10.4 + +* Wed Apr 22 2020 Michel Alexandre Salim - 5.10.3-1 +- Update to 5.10.3 + +* Sun Apr 12 2020 Michel Alexandre Salim - 5.8.2-1 +- Update to 5.8.2 + +* Tue Apr 7 2020 Michel Alexandre Salim - 5.8.0-2 +- Manually add requirement on sortedcontainers + +* Tue Apr 7 2020 Michel Alexandre Salim - 5.8.0-1 +- Update to 5.8.0 + +* Thu Jan 30 2020 Fedora Release Engineering - 4.23.8-7 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild + +* Mon Nov 11 2019 Miro Hrončok - 4.23.8-6 +- Drop python2-hypothesis + +* Thu Oct 03 2019 Miro Hrončok - 4.23.8-5 +- Rebuilt for Python 3.8.0rc1 (#1748018) + +* Mon Aug 19 2019 Miro Hrončok - 4.23.8-4 +- Rebuilt for Python 3.8 + +* Thu Aug 15 2019 Miro Hrončok - 4.23.8-3 +- Bootstrap for Python 3.8 + +* Fri Jul 26 2019 Fedora Release Engineering - 4.23.8-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild + +* Tue May 28 2019 Miro Hrončok - 4.23.8-1 +- Update to 4.23.8 (#1711096) + +* Thu May 09 2019 Miro Hrončok - 4.23.4-1 +- Update to 4.23.4 (#1609770) + +* Sat Mar 09 2019 Igor Gnatenko - 4.9.0-1 +- Update to 4.9.0 + +* Sat Feb 02 2019 Fedora Release Engineering - 3.66.11-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild + +* Sat Jul 28 2018 Igor Gnatenko - 3.66.11-1 +- Update to 3.66.11 + +* Sat Jul 14 2018 Fedora Release Engineering - 3.66.0-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild + +* Sat Jul 07 2018 Igor Gnatenko - 3.66.0-1 +- Update to 3.66.0 + +* Sat Jul 07 2018 Igor Gnatenko - 3.56.7-1 +- Update to 3.56.7 + +* Thu Jun 14 2018 Miro Hrončok - 3.49.0-2 +- Rebuilt for Python 3.7 + +* Mon Mar 12 2018 Igor Gnatenko - 3.49.0-1 +- Update to 3.49.0 + +* Mon Mar 12 2018 Igor Gnatenko - 3.47.0-1 +- Update to 3.47.0 + +* Sun Feb 11 2018 Igor Gnatenko - 3.44.24-4 +- Pick up automatic dependency from generator + +* Sat Feb 10 2018 Igor Gnatenko - 3.44.24-3 +- Add missing dependency on enum34 + +* Fri Feb 09 2018 Fedora Release Engineering - 3.44.24-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild + +* Sun Jan 28 2018 Igor Gnatenko - 3.44.24-1 +- Update to 3.44.24 + +* Sat Jan 20 2018 Igor Gnatenko - 3.44.18-1 +- Update to 3.44.18 + +* Mon Jan 15 2018 Igor Gnatenko - 3.44.17-1 +- Update to 3.44.17 + +* Sun Jan 14 2018 Igor Gnatenko - 3.44.16-1 +- Update to 3.44.16 + +* Tue Jan 09 2018 Igor Gnatenko - 3.44.14-1 +- Update to 3.44.14 + +* Mon Jan 08 2018 Igor Gnatenko - 3.44.12-1 +- Update to 3.44.12 + +* Sun Dec 24 2017 Igor Gnatenko - 3.44.4-1 +- Update to 3.44.4 + +* Wed Dec 13 2017 Igor Gnatenko - 3.42.2-1 +- Update to 3.42.2 + +* Thu Nov 23 2017 Igor Gnatenko - 3.38.4-1 +- Update to 3.38.4 + +* Sun Nov 19 2017 Igor Gnatenko - 3.38.0-1 +- Update to 3.38.0 + +* Mon Nov 13 2017 Igor Gnatenko - 3.37.0-1 +- Update to 3.37.0 + +* Sun Nov 12 2017 Igor Gnatenko - 3.36.1-1 +- Update to 3.36.1 + +* Tue Nov 07 2017 Igor Gnatenko - 3.36.0-2 +- Use better Obsoletes for platform-python + +* Tue Nov 07 2017 Igor Gnatenko - 3.36.0-1 +- Update to 3.36.0 + +* Mon Nov 06 2017 Igor Gnatenko - 3.34.1-1 +- Update to 3.34.1 + +* Sat Nov 04 2017 Igor Gnatenko - 3.34.0-1 +- Update to 3.34.0 + +* Thu Nov 02 2017 Igor Gnatenko - 3.33.1-1 +- Update to 3.33.1 + +* Thu Aug 24 2017 Miro Hrončok - 3.12.0-4 +- Rebuilt for rhbz#1484607 + +* Thu Aug 10 2017 Tomas Orsava - 3.12.0-3 +- Added the platform-python subpackage + +* Thu Jul 27 2017 Fedora Release Engineering - 3.12.0-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild + +* Mon Jul 10 2017 Michel Alexandre Salim - 3.12.0-1 +- Update to 3.12.0 +- Reenable docs in EPEL7 + +* Sat Feb 11 2017 Fedora Release Engineering - 3.4.0-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild + +* Fri Dec 09 2016 Charalampos Stratakis - 3.4.0-3 +- Rebuild for Python 3.6 + +* Tue Jul 19 2016 Fedora Release Engineering - 3.4.0-2 +- https://fedoraproject.org/wiki/Changes/Automatic_Provides_for_Python_RPM_Packages + +* Sun May 29 2016 Michel Alexandre Salim - 3.4.0-1 +- Update to 3.4.0 +- Version the explicit Provides + +* Wed May 04 2016 Nathaniel McCallum - 3.1.3-1 +- Update to 3.1.3 +- Remove unused code +- Remove unused dependencies + +* Sun Feb 14 2016 Michel Salim - 2.0.0-1 +- Update to 2.0.0 + +* Thu Feb 04 2016 Fedora Release Engineering - 1.11.2-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild + +* Tue Nov 10 2015 Fedora Release Engineering +- Rebuilt for https://fedoraproject.org/wiki/Changes/python3.5 + +* Fri Sep 25 2015 Michel Salim - 1.11.2-1 +- Update to 1.11.2 + +* Sun Sep 20 2015 Michel Alexandre Salim - 1.11.1-1 +- Update to 1.11.1 + +* Wed Sep 2 2015 Michel Alexandre Salim - 1.11.0-1 +- Update to 1.11.0 + +* Tue Sep 1 2015 Michel Alexandre Salim - 1.10.6-3 +- Re-disable tests for now + +* Tue Sep 1 2015 Michel Alexandre Salim - 1.10.6-2 +- Disable Python3 tests - need debugging on ARM builders + +* Mon Aug 31 2015 Michel Alexandre Salim - 1.10.6-1 +- Update to 1.10.6 +- Enable tests + +* Fri Aug 7 2015 Michel Alexandre Salim - 1.10.0-1 +- Update to 1.10 + +* Wed Jul 29 2015 Michel Alexandre Salim - 1.9.0-1 +- Update to 1.9.0 + +* Fri Jul 24 2015 Michel Alexandre Salim - 1.8.5-2 +- Remove she-bang from tools/mergedbs.py +- Include manpage + +* Fri Jul 24 2015 Michel Alexandre Salim - 1.8.5-1 +- Update to 1.8.5 +- Make Python3 build unconditional + +* Thu Jul 23 2015 Michel Alexandre Salim - 1.8.2-1 +- Initial package + +## END: Generated by rpmautospec diff --git a/python-hypothesis.spec b/python-hypothesis.spec deleted file mode 100644 index 67fc816..0000000 --- a/python-hypothesis.spec +++ /dev/null @@ -1,127 +0,0 @@ -%if 0%{?el9} -# Needs pytest-xdist and typing-extensions which pull in a bunch of BRs, see -# missing-epel9-test-brs.json -%bcond_with tests -%bcond_with doc -%else -%bcond_without tests -%bcond_without doc -%endif - -Name: python-hypothesis -Version: 6.39.1 -Release: %autorelease -Summary: Library for property based testing - -License: MPLv2.0 -URL: https://github.com/HypothesisWorks/hypothesis -Source0: %{url}/archive/hypothesis-python-%{version}/hypothesis-%{version}.tar.gz - -BuildArch: noarch - -BuildRequires: python%{python3_pkgversion}-devel -BuildRequires: pyproject-rpm-macros >= 0-43 - -%if %{with tests} -# optional test dependencies: -BuildRequires: %{py3_dist typing_extensions} -%endif - -%if %{with doc} -BuildRequires: %{_bindir}/sphinx-build -BuildRequires: %{py3_dist sphinx-hoverxref} -BuildRequires: %{py3_dist sphinx-rtd-theme} -BuildRequires: %{py3_dist sphinx_selective_exclude} -%endif - - -%global _description %{expand: -Hypothesis is a library for testing your Python code against a much -larger range of examples than you would ever want to write by -hand. It’s based on the Haskell library, Quickcheck, and is designed -to integrate seamlessly into your existing Python unit testing work -flow.} - -%description %{_description} - - -%package -n python%{python3_pkgversion}-hypothesis -Summary: %{summary} - -%description -n python%{python3_pkgversion}-hypothesis %{_description} - - -%global extras cli,ghostwriter,pytz,dateutil,lark,numpy,pandas,pytest,redis,zoneinfo,django -# extras with missing deps: -# codemods: libcst -# dpcontracts: dpcontracts -%{pyproject_extras_subpkg -n python%{python3_pkgversion}-hypothesis %{extras}} - - -%prep -%autosetup -n hypothesis-hypothesis-python-%{version}/hypothesis-python -p2 -# disable Sphinx extensions that require Internet access -sed -i -e '/sphinx.ext.intersphinx/d' docs/conf.py -# disable Sphinx non-available extensions -sed -i -e '/sphinx_codeautolink/d' docs/conf.py - - -%generate_buildrequires -%pyproject_buildrequires %{?with_tests:../requirements/test.in -x %{extras}} - - -%build -%pyproject_wheel - -%if %{with doc} -PYTHONPATH=src READTHEDOCS=True sphinx-build -b man docs docs/_build/man -%endif - - -%install -%pyproject_install -%pyproject_save_files hypothesis - -%if %{with doc} -install -Dpm0644 -t %{buildroot}%{_mandir}/man1 docs/_build/man/hypothesis.1 -%endif - - -%if %{with tests} -%check -k="not test_registered_from_entrypoint" - -# https://github.com/HypothesisWorks/hypothesis/issues/3035 -k="$k and not test_recursion_error_is_not_flaky" - -# https://github.com/pandas-dev/pandas/commit/95a86a9884e -%if "%{_arch}" == "s390x" -k="$k and not test_data_frames_with_timestamp_columns" -%endif - -%pytest -v -n auto -k "$k" \ - --ignore tests/codemods \ - --ignore tests/dpcontracts \ - --ignore tests/redis \ - -# The BRP that handles bytecompilation already run at the end of %%install. -# This autogenerated file gets re-generated during tests, -# the tests asserts the content is identical, but the mtime is changed anyway. -# Since %%pytest disables byte-compilation, we need to update the pycs manually: -%py_byte_compile %{python3} %{buildroot}%{python3_sitelib}/hypothesis/internal/conjecture/shrinking/learned_dfas.py -%endif - - -%files -n python%{python3_pkgversion}-hypothesis -f %{pyproject_files} -%license ../LICENSE.txt -%doc README.rst -%{python3_sitelib}/_hypothesis_pytestplugin.py -%{python3_sitelib}/__pycache__/_hypothesis_pytestplugin*.pyc -%{_bindir}/hypothesis -%if %{with doc} -%{_mandir}/man1/hypothesis.1* -%endif - - -%changelog -%autochangelog diff --git a/sources b/sources deleted file mode 100644 index 70da639..0000000 --- a/sources +++ /dev/null @@ -1 +0,0 @@ -SHA512 (hypothesis-6.39.1.tar.gz) = 4434908c8361d9fca9caea97ce277af399400b17141128e8c768261814472b3379f41773b6cdf85dc6542ae22c50d10c3d726e65b52a0581cca28fb6485d7420