forked from pool/python-vcrpy
Compare commits
11 Commits
| Author | SHA256 | Date | |
|---|---|---|---|
| f471294735 | |||
| f5f1fec8f3 | |||
| cf16486120 | |||
| 4e82cfd3a2 | |||
| 6f4b5fb00d | |||
| 25cee5a0c6 | |||
| 6b36643742 | |||
| f3875b9757 | |||
| e7fc728490 | |||
| 5f28e40d36 | |||
| 2c1f516f15 |
@@ -1,3 +1,43 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Fri Jan 23 01:17:47 UTC 2026 - Steve Kowalik <steven.kowalik@suse.com>
|
||||||
|
|
||||||
|
- Add missing BuildRequires on pytest-asyncio.
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Fri Jan 9 10:22:55 UTC 2026 - Nico Krapp <nico.krapp@suse.com>
|
||||||
|
|
||||||
|
- Update to 8.1.1
|
||||||
|
* Fix sync requests in async contexts for HTTPX
|
||||||
|
* CI: bump peter-evans/create-pull-request from 7 to 8
|
||||||
|
- Update to 8.1.0
|
||||||
|
* Enable brotli decompression if available
|
||||||
|
(via brotli, brotlipy or brotlicffi)
|
||||||
|
* Fix aiohttp allowing both data and json arguments when one is None
|
||||||
|
* Fix usage of io-like interface with VCR.py
|
||||||
|
* Migrate to declarative Python package config
|
||||||
|
* Various linting fixes
|
||||||
|
* CI: bump actions/checkout from 5 to 6
|
||||||
|
- Update top 8.0.0
|
||||||
|
* Drop support for Python 3.9
|
||||||
|
* Drop support for urllib3 < 2 - fixes CVE warnings from urllib3 1.x
|
||||||
|
* New drop_unused_requests option to remove unused interactions from
|
||||||
|
cassettes
|
||||||
|
* Rewrite httpx support to patch httpcore instead of httpx
|
||||||
|
* Fix HTTPS proxy handling - proxy address no longer ends up in cassette URIs
|
||||||
|
* Fix iscoroutinefunction deprecation warning on Python 3.14
|
||||||
|
* Only log message if response is appended
|
||||||
|
* Optimize urllib.parse calls
|
||||||
|
* Fix CI for Ubuntu 24.04
|
||||||
|
* Various CI improvements: migrate to uv, update GitHub Actions
|
||||||
|
* Various linting and test improvements
|
||||||
|
- drop use-inspect-iscorountinefunction.patch, merged upstream
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Fri Nov 7 01:51:46 UTC 2025 - Steve Kowalik <steven.kowalik@suse.com>
|
||||||
|
|
||||||
|
- Add patch use-inspect-iscorountinefunction.patch:
|
||||||
|
* Use inspect.iscorountinefunction rather than asyncio.
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Mon Jan 6 10:53:19 UTC 2025 - John Paul Adrian Glaubitz <adrian.glaubitz@suse.com>
|
Mon Jan 6 10:53:19 UTC 2025 - John Paul Adrian Glaubitz <adrian.glaubitz@suse.com>
|
||||||
|
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
#
|
#
|
||||||
# spec file for package python-vcrpy
|
# spec file for package python-vcrpy
|
||||||
#
|
#
|
||||||
# Copyright (c) 2025 SUSE LLC
|
# Copyright (c) 2026 SUSE LLC and contributors
|
||||||
# Copyright (c) 2015 LISA GmbH, Bingen, Germany.
|
# Copyright (c) 2015 LISA GmbH, Bingen, Germany.
|
||||||
#
|
#
|
||||||
# All modifications and additions to the file contributed by third parties
|
# All modifications and additions to the file contributed by third parties
|
||||||
@@ -19,31 +19,27 @@
|
|||||||
|
|
||||||
%{?sle15_python_module_pythons}
|
%{?sle15_python_module_pythons}
|
||||||
Name: python-vcrpy
|
Name: python-vcrpy
|
||||||
Version: 7.0.0
|
Version: 8.1.1
|
||||||
Release: 0
|
Release: 0
|
||||||
Summary: Python module to mock and replay HTTP interactions
|
Summary: Python module to mock and replay HTTP interactions
|
||||||
License: MIT
|
License: MIT
|
||||||
URL: https://github.com/kevin1024/vcrpy
|
URL: https://github.com/kevin1024/vcrpy
|
||||||
Source: https://files.pythonhosted.org/packages/source/v/vcrpy/vcrpy-%{version}.tar.gz
|
Source: https://files.pythonhosted.org/packages/source/v/vcrpy/vcrpy-%{version}.tar.gz
|
||||||
BuildRequires: %{python_module PyYAML}
|
BuildRequires: %{python_module PyYAML}
|
||||||
|
BuildRequires: %{python_module base >= 3.10}
|
||||||
BuildRequires: %{python_module pip}
|
BuildRequires: %{python_module pip}
|
||||||
|
BuildRequires: %{python_module pytest-asyncio}
|
||||||
BuildRequires: %{python_module pytest-httpbin}
|
BuildRequires: %{python_module pytest-httpbin}
|
||||||
BuildRequires: %{python_module pytest}
|
BuildRequires: %{python_module pytest}
|
||||||
BuildRequires: %{python_module setuptools}
|
BuildRequires: %{python_module setuptools}
|
||||||
# gh#kevin1024/vcrpy#688
|
BuildRequires: %{python_module urllib3}
|
||||||
BuildRequires: %{python_module urllib3 < 2 if %python-base < 3.10}
|
|
||||||
BuildRequires: %{python_module wheel}
|
BuildRequires: %{python_module wheel}
|
||||||
BuildRequires: %{python_module wrapt}
|
BuildRequires: %{python_module wrapt}
|
||||||
BuildRequires: %{python_module yarl}
|
|
||||||
BuildRequires: fdupes
|
BuildRequires: fdupes
|
||||||
BuildRequires: python-rpm-macros
|
BuildRequires: python-rpm-macros
|
||||||
Requires: python-PyYAML
|
Requires: python-PyYAML
|
||||||
Requires: python-wrapt
|
Requires: python-wrapt
|
||||||
%if 0%{python_version_nodots} < 310
|
|
||||||
Requires: python-urllib3 < 2
|
|
||||||
%endif
|
|
||||||
BuildArch: noarch
|
BuildArch: noarch
|
||||||
Requires: python-yarl
|
|
||||||
%python_subpackages
|
%python_subpackages
|
||||||
|
|
||||||
%description
|
%description
|
||||||
@@ -53,7 +49,7 @@ test runs for deterministic tests.
|
|||||||
This is a Python version of Ruby's VCR library.
|
This is a Python version of Ruby's VCR library.
|
||||||
|
|
||||||
%prep
|
%prep
|
||||||
%setup -q -n vcrpy-%{version}
|
%autosetup -p1 -n vcrpy-%{version}
|
||||||
# online integration tests
|
# online integration tests
|
||||||
rm -r tests/integration
|
rm -r tests/integration
|
||||||
|
|
||||||
|
|||||||
BIN
vcrpy-7.0.0.tar.gz
LFS
BIN
vcrpy-7.0.0.tar.gz
LFS
Binary file not shown.
3
vcrpy-8.1.1.tar.gz
Normal file
3
vcrpy-8.1.1.tar.gz
Normal file
@@ -0,0 +1,3 @@
|
|||||||
|
version https://git-lfs.github.com/spec/v1
|
||||||
|
oid sha256:58e3053e33b423f3594031cb758c3f4d1df931307f1e67928e30cf352df7709f
|
||||||
|
size 85770
|
||||||
Reference in New Issue
Block a user