- Update to 3.1.1

* Support for Python 3.7 and 3.8 is now dropped, while official support for
    3.12 and 3.13 was added (with no code changes required).
  * pytest.ini (required to run self-tests) is now included in sdists (#39).
  * New pytest_xvfb_disable hook to dynamically disable pytest-xvfb.
This commit is contained in:
2025-12-09 15:50:20 +11:00
parent 68af6e8bfb
commit 4f02eaa4ed
4 changed files with 16 additions and 7 deletions

BIN
pytest-xvfb-3.0.0.tar.gz (Stored with Git LFS)

Binary file not shown.

BIN
pytest_xvfb-3.1.1.tar.gz (Stored with Git LFS) Normal file

Binary file not shown.

View File

@@ -1,3 +1,12 @@
-------------------------------------------------------------------
Tue Dec 9 04:49:32 UTC 2025 - Steve Kowalik <steven.kowalik@suse.com>
- Update to 3.1.1:
* Support for Python 3.7 and 3.8 is now dropped, while official support for
3.12 and 3.13 was added (with no code changes required).
* pytest.ini (required to run self-tests) is now included in sdists (#39).
* New pytest_xvfb_disable hook to dynamically disable pytest-xvfb.
-------------------------------------------------------------------
Wed Sep 27 10:03:35 UTC 2023 - Ben Greiner <code@bnavigator.de>

View File

@@ -18,14 +18,14 @@
%{?sle15_python_module_pythons}
Name: python-pytest-xvfb
Version: 3.0.0
Version: 3.1.1
Release: 0
Summary: Pytest plugin to run Xvfb for tests
License: MIT
URL: https://github.com/The-Compiler/pytest-xvfb
Source: https://files.pythonhosted.org/packages/source/p/pytest-xvfb/pytest-xvfb-%{version}.tar.gz
Source: https://files.pythonhosted.org/packages/source/p/pytest-xvfb/pytest_xvfb-%{version}.tar.gz
BuildRequires: %{python_module PyVirtualDisplay >= 1.3}
BuildRequires: %{python_module base >= 3.7}
BuildRequires: %{python_module base >= 3.9}
BuildRequires: %{python_module pip}
BuildRequires: %{python_module pytest >= 2.8.1}
BuildRequires: %{python_module setuptools >= 61.2}
@@ -56,7 +56,7 @@ simply remove it and install this plugin instead - then you'll also have the
benefits of Xvfb locally.
%prep
%setup -q -n pytest-xvfb-%{version}
%setup -q -n pytest_xvfb-%{version}
rm tests/test_xvfb_windows.py
%build