forked from pool/python-fakeredis
Compare commits
8 Commits
Author | SHA256 | Date | |
---|---|---|---|
77f556a653 | |||
317a8e9bfb | |||
dc55c7d42e | |||
547520e680 | |||
6e8bddf0de | |||
da8e461338 | |||
79f241e038 | |||
0aae007ffc |
BIN
fakeredis-2.23.4-gh.tar.gz
(Stored with Git LFS)
BIN
fakeredis-2.23.4-gh.tar.gz
(Stored with Git LFS)
Binary file not shown.
BIN
fakeredis-2.30.1-gh.tar.gz
(Stored with Git LFS)
Normal file
BIN
fakeredis-2.30.1-gh.tar.gz
(Stored with Git LFS)
Normal file
Binary file not shown.
@@ -1,3 +1,44 @@
|
||||
-------------------------------------------------------------------
|
||||
Tue Jun 24 11:41:38 UTC 2025 - Markéta Machová <mmachova@suse.com>
|
||||
|
||||
- Update to 2.30.1
|
||||
* Move LICENSE file to fakeredis/ on build
|
||||
* Show warning for deprecated parameter only if parameter is included
|
||||
in instantiation
|
||||
* Replace deprecated event_loop fixture
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Jun 19 12:42:15 UTC 2025 - Markéta Machová <mmachova@suse.com>
|
||||
|
||||
- Update to 2.30.0
|
||||
* Support for RESP3
|
||||
* Implement support for COPY
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Jun 12 12:23:04 UTC 2025 - Antonio Teixeira <antonio.teixeira@suse.com>
|
||||
|
||||
- Update to 2.29.0:
|
||||
* https://github.com/cunla/fakeredis-py/releases/tag/v2.29.0
|
||||
* https://github.com/cunla/fakeredis-py/releases/tag/v2.28.1
|
||||
* https://github.com/cunla/fakeredis-py/releases/tag/v2.28.0
|
||||
* https://github.com/cunla/fakeredis-py/releases/tag/v2.27.0
|
||||
* https://github.com/cunla/fakeredis-py/releases/tag/v2.26.2
|
||||
* https://github.com/cunla/fakeredis-py/releases/tag/v2.26.1
|
||||
* https://github.com/cunla/fakeredis-py/releases/tag/v2.26.0
|
||||
* https://github.com/cunla/fakeredis-py/releases/tag/v2.25.1
|
||||
* https://github.com/cunla/fakeredis-py/releases/tag/v2.25.0
|
||||
* https://github.com/cunla/fakeredis-py/releases/tag/v2.24.1
|
||||
* https://github.com/cunla/fakeredis-py/releases/tag/v2.24.0
|
||||
* https://github.com/cunla/fakeredis-py/releases/tag/v2.23.5
|
||||
- Add redis build requirement and run redis server for test suite
|
||||
- Drop fix-tests.patch
|
||||
* Included in upstream release
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Oct 8 16:14:14 UTC 2024 - Markéta Machová <mmachova@suse.com>
|
||||
|
||||
- Add upstream fix-tests.patch
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Jul 31 02:16:56 UTC 2024 - Martin Schreiner <martin.schreiner@suse.com>
|
||||
|
||||
|
@@ -1,7 +1,7 @@
|
||||
#
|
||||
# spec file for package python-fakeredis
|
||||
#
|
||||
# Copyright (c) 2024 SUSE LLC
|
||||
# Copyright (c) 2025 SUSE LLC
|
||||
#
|
||||
# All modifications and additions to the file contributed by third parties
|
||||
# remain the property of their copyright owners, unless otherwise agreed
|
||||
@@ -18,31 +18,30 @@
|
||||
|
||||
%{?sle15_python_module_pythons}
|
||||
Name: python-fakeredis
|
||||
Version: 2.23.4
|
||||
Version: 2.30.1
|
||||
Release: 0
|
||||
Summary: Fake implementation of redis API for testing purposes
|
||||
License: BSD-3-Clause AND MIT
|
||||
URL: https://github.com/cunla/fakeredis-py
|
||||
Source: https://github.com/cunla/fakeredis-py/archive/refs/tags/v%{version}.tar.gz#/fakeredis-%{version}-gh.tar.gz
|
||||
BuildRequires: %{python_module base >= 3.7}
|
||||
BuildRequires: %{python_module hatchling}
|
||||
BuildRequires: %{python_module pip}
|
||||
BuildRequires: %{python_module poetry-core}
|
||||
BuildRequires: %{python_module wheel}
|
||||
BuildRequires: fdupes
|
||||
BuildRequires: python-rpm-macros
|
||||
Requires: python-redis >= 4
|
||||
Requires: python-sortedcontainers >= 2.4.0
|
||||
Requires: python-typing_extensions >= 4.7
|
||||
Suggests: python-lupa >= 1.14
|
||||
BuildArch: noarch
|
||||
# SECTION test requirements
|
||||
# technically requires hypothesis >= 6.56, but we don't have it yet
|
||||
BuildRequires: %{python_module hypothesis}
|
||||
BuildRequires: %{python_module hypothesis >= 6.56}
|
||||
BuildRequires: %{python_module pytest >= 7.1.2}
|
||||
BuildRequires: %{python_module pytest-asyncio >= 0.19.0}
|
||||
BuildRequires: %{python_module pytest-mock >= 3.7.0}
|
||||
BuildRequires: %{python_module redis >= 4}
|
||||
BuildRequires: %{python_module sortedcontainers >= 2.4.0}
|
||||
BuildRequires: %{python_module typing_extensions >= 4.7}
|
||||
BuildRequires: redis
|
||||
# /SECTION
|
||||
%python_subpackages
|
||||
|
||||
@@ -61,6 +60,7 @@ Fake implementation of redis API for testing purposes.
|
||||
|
||||
%check
|
||||
export LANG="en_US.UTF8"
|
||||
%{_sbindir}/redis-server --port 6390 --save &
|
||||
%pytest -m "not slow"
|
||||
|
||||
%files %{python_files}
|
||||
|
Reference in New Issue
Block a user