14
0

- update to 1.10.0:

* Add a release note for the RLock
  * Allow passing json\_encoder to mocking
  * Improvements to Type Hints
  * Lint fix for long line exception
  * Shorten line length of comments
  * Workaround for python2.7 not supporting lock timeout
  * Comments to explain reentrant behaviour
  * Change to use RLock and set a timeout to prevent infinite deadlocks
  * Update homepage/doc URLs of requests library
  * Add comment for pytest late loading feature
  * pytest plugin should lazy-load requests\_mock
  * Add test for threaded race condition
  * Use threading.Lock() to prevent race conditions around monkeypatching of
    get\_adapter()
  * add GitHub URL for PyPi
  * Add reset methods on the Mocker class type
  * Avoid using distutils to check pytest version
  * YAML quoting
  * Support Python 3.10
  * Minor changes to code snippet example
  * Fix DeprecationWarnings in setup.cfg keys
  * a few minor fixes and proposed changes to documentation files
  * Improve response-related param type hints
  * Explicitly indicate start of keyword-only args
  * Fix failing pytest

OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-requests-mock?expand=0&rev=49
This commit is contained in:
2023-01-07 22:57:14 +00:00
committed by Git OBS Bridge
parent bd05a5217c
commit c806c7d6ee
5 changed files with 41 additions and 10 deletions

View File

@@ -1,7 +1,7 @@
#
# spec file for package python-requests-mock
#
# Copyright (c) 2022 SUSE LLC
# Copyright (c) 2023 SUSE LLC
#
# All modifications and additions to the file contributed by third parties
# remain the property of their copyright owners, unless otherwise agreed
@@ -18,7 +18,7 @@
%{?!python_module:%define python_module() python-%{**} python3-%{**}}
Name: python-requests-mock
Version: 1.9.3
Version: 1.10.0
Release: 0
Summary: Module to mock out responses from the requests package
License: Apache-2.0
@@ -31,6 +31,7 @@ BuildRequires: %{python_module purl}
BuildRequires: %{python_module purl}
BuildRequires: %{python_module pytest}
BuildRequires: %{python_module requests >= 2.3}
BuildRequires: %{python_module requests-futures}
BuildRequires: %{python_module six}
BuildRequires: %{python_module testrepository >= 0.0.18}
BuildRequires: %{python_module testtools}