- Update to 0.8.0

* Allow passing request_timeout to client_fetch #67 (@afbarbaro)
  * code maintenance
- Disable the -server subpackage for Ring1

OBS-URL: https://build.opensuse.org/package/show/devel:languages:python:jupyter/python-pytest-jupyter?expand=0&rev=9
This commit is contained in:
Benjamin Greiner 2023-12-24 14:16:20 +00:00 committed by Git OBS Bridge
parent 2645124cc9
commit a9629a9c96
4 changed files with 20 additions and 4 deletions

BIN
pytest_jupyter-0.7.0.tar.gz (Stored with Git LFS)

Binary file not shown.

View File

@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:842817c300802c8608676bbb1460ba0081f2688cf5cb55b87d7bad5dcb0e9729
size 15716

View File

@ -1,3 +1,11 @@
-------------------------------------------------------------------
Sun Dec 24 14:14:51 UTC 2023 - Ben Greiner <code@bnavigator.de>
- Update to 0.8.0
* Allow passing request_timeout to client_fetch #67 (@afbarbaro)
* code maintenance
- Disable the -server subpackage for Ring1
-------------------------------------------------------------------
Sun Apr 23 17:24:28 UTC 2023 - Ben Greiner <code@bnavigator.de>

View File

@ -25,8 +25,12 @@
%bcond_with test
%endif
# defined at Ring1-MinimalX lettered staging prjconf
# We do not want jupyter-server in ring1
%bcond_with ringdisabled
Name: python-pytest-jupyter%{psuffix}
Version: 0.7.0
Version: 0.8.0
Release: 0
Summary: A pytest plugin for testing Jupyter libraries and extensions
License: BSD-3-Clause AND MIT
@ -44,7 +48,9 @@ BuildArch: noarch
BuildRequires: %{python_module nbformat}
BuildRequires: %{python_module pytest-jupyter = %{version}}
BuildRequires: %{python_module pytest-jupyter-client = %{version}}
%if !%{with ringdisabled}
BuildRequires: %{python_module pytest-jupyter-server = %{version}}
%endif
BuildRequires: %{python_module pytest-timeout}
%endif
%python_subpackages
@ -101,8 +107,10 @@ sed -i 's/--color=yes//' pyproject.toml
%files %{python_files client}
%license LICENSE
%if !%{with ringdisabled}
%files %{python_files server}
%license LICENSE
%endif
%endif
%changelog