diff --git a/pytest-benchmark-3.4.1.tar.gz b/pytest-benchmark-3.4.1.tar.gz deleted file mode 100644 index 03a4c11..0000000 --- a/pytest-benchmark-3.4.1.tar.gz +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:40e263f912de5a81d891619032983557d62a3d85843f9a9f30b98baea0cd7b47 -size 340349 diff --git a/pytest-benchmark-4.0.0.tar.gz b/pytest-benchmark-4.0.0.tar.gz new file mode 100644 index 0000000..4081a04 --- /dev/null +++ b/pytest-benchmark-4.0.0.tar.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fb0785b83efe599a6a956361c0691ae1dbb5318018561af10f3e915caa0048d1 +size 334641 diff --git a/python-pytest-benchmark.changes b/python-pytest-benchmark.changes index 4669052..0b4c7a3 100644 --- a/python-pytest-benchmark.changes +++ b/python-pytest-benchmark.changes @@ -1,3 +1,18 @@ +------------------------------------------------------------------- +Wed Nov 30 07:44:51 UTC 2022 - Daniel Garcia + +- Update to 4.0.0: + * Dropped support for legacy Pythons (2.7, 3.6 or older). + * Switched CI to GitHub Actions. + * Removed dependency on the py library (that was not properly specified as a + dependency anyway). + * Fix skipping test in test_utils.py if appropriate VCS not available. Also + fix typo. Contributed by Sam James in #211. + * Added support for pytest 7.2.0 by using pytest.hookimpl and pytest.hookspec + to configure hooks. Contributed by Florian Bruhin in #224. + * Now no save is attempted if --benchmark-disable is used. Fixes #205. + Contributed by Friedrich Delgado in #207. + ------------------------------------------------------------------- Mon Mar 28 21:07:02 UTC 2022 - Ben Greiner diff --git a/python-pytest-benchmark.spec b/python-pytest-benchmark.spec index 5f88e06..18d44aa 100644 --- a/python-pytest-benchmark.spec +++ b/python-pytest-benchmark.spec @@ -16,10 +16,9 @@ # -%{?!python_module:%define python_module() python3-%{**}} %define skip_python2 1 Name: python-pytest-benchmark -Version: 3.4.1 +Version: 4.0.0 Release: 0 Summary: A py.test fixture for benchmarking code License: BSD-2-Clause @@ -53,8 +52,7 @@ A py.test fixture for benchmarking code. It will group the tests into rounds that are calibrated to the chosen timer. %prep -%setup -q -n pytest-benchmark-%{version} -%autopatch -p1 +%autosetup -p1 -n pytest-benchmark-%{version} # skip cli tests as we use update-alternatives rm -f tests/test_cli.py # Don't look for a test pass in the wrong place -- https://github.com/ionelmc/pytest-benchmark/issues/214