forked from pool/python-fakeredis
- update to 2.13.0:
* Fixed xadd timestamp (fixes #151) (#152) * Implement XDEL #153 * Improve test code * Fix reported security issue * Add support for `Connection.read_response` arguments used in redis-py 4.5.5 and 5.0.0 * Adding state for scan commands (#99) * Improved documentation (added async sample, etc.) OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-fakeredis?expand=0&rev=33
This commit is contained in:
parent
42223a2c7b
commit
da10a10b53
@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:7f64c16d69724a5e90176176ffd7919ea721eb4092ed55ec871a548006ff59f4
|
||||
size 163132
|
3
fakeredis-2.13.0-gh.tar.gz
Normal file
3
fakeredis-2.13.0-gh.tar.gz
Normal file
@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:593204bdaaa9710e07e2c1a21a4f44040934e3078997fbf581b9441e8f261630
|
||||
size 165498
|
@ -1,3 +1,16 @@
|
||||
-------------------------------------------------------------------
|
||||
Mon May 29 13:33:12 UTC 2023 - Dirk Müller <dmueller@suse.com>
|
||||
|
||||
- update to 2.13.0:
|
||||
* Fixed xadd timestamp (fixes #151) (#152)
|
||||
* Implement XDEL #153
|
||||
* Improve test code
|
||||
* Fix reported security issue
|
||||
* Add support for `Connection.read_response` arguments used in
|
||||
redis-py 4.5.5 and 5.0.0
|
||||
* Adding state for scan commands (#99)
|
||||
* Improved documentation (added async sample, etc.)
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon May 8 18:09:08 UTC 2023 - Dirk Müller <dmueller@suse.com>
|
||||
|
||||
|
@ -18,7 +18,7 @@
|
||||
|
||||
%{?sle15_python_module_pythons}
|
||||
Name: python-fakeredis
|
||||
Version: 2.12.0
|
||||
Version: 2.13.0
|
||||
Release: 0
|
||||
Summary: Fake implementation of redis API for testing purposes
|
||||
License: BSD-3-Clause AND MIT
|
||||
@ -39,8 +39,7 @@ BuildRequires: %{python_module hypothesis}
|
||||
BuildRequires: %{python_module lupa >= 1.14}
|
||||
BuildRequires: %{python_module pytest >= 7.1.2}
|
||||
BuildRequires: %{python_module pytest-asyncio >= 0.19.0}
|
||||
# technically requires pytest-mock >= 3.7.0, but we don't have it yet
|
||||
BuildRequires: %{python_module pytest-mock}
|
||||
BuildRequires: %{python_module pytest-mock >= 3.7.0}
|
||||
BuildRequires: %{python_module redis >= 4}
|
||||
BuildRequires: %{python_module sortedcontainers >= 2.4.0}
|
||||
# /SECTION
|
||||
@ -61,7 +60,8 @@ Fake implementation of redis API for testing purposes.
|
||||
|
||||
%check
|
||||
export LANG="en_US.UTF8"
|
||||
%pytest
|
||||
rm -v test/test_redis_asyncio.py
|
||||
%pytest -m "not slow"
|
||||
|
||||
%files %{python_files}
|
||||
%doc README.md
|
||||
|
Loading…
Reference in New Issue
Block a user