rediscache 1.0.1__tar.gz → 1.0.3__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {rediscache-1.0.1 → rediscache-1.0.3}/PKG-INFO +5 -5
- {rediscache-1.0.1 → rediscache-1.0.3}/pyproject.toml +3 -4
- {rediscache-1.0.1 → rediscache-1.0.3}/LICENSE +0 -0
- {rediscache-1.0.1 → rediscache-1.0.3}/README.md +0 -0
- {rediscache-1.0.1 → rediscache-1.0.3}/rediscache/__init__.py +0 -0
- {rediscache-1.0.1 → rediscache-1.0.3}/rediscache/tools.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.3
|
|
2
2
|
Name: rediscache
|
|
3
|
-
Version: 1.0.
|
|
3
|
+
Version: 1.0.3
|
|
4
4
|
Summary: Redis caching of functions evolving over time
|
|
5
5
|
License: MIT
|
|
6
6
|
Keywords: redis,performance,cache
|
|
@@ -8,20 +8,20 @@ Author: Pierre Cart-Grandjean
|
|
|
8
8
|
Author-email: pcart-grandjean@amadeus.com
|
|
9
9
|
Maintainer: Amadeus IT Group
|
|
10
10
|
Maintainer-email: opensource@amadeus.com
|
|
11
|
-
Requires-Python: >=3.
|
|
11
|
+
Requires-Python: >=3.11,<4.0
|
|
12
12
|
Classifier: Development Status :: 5 - Production/Stable
|
|
13
13
|
Classifier: Intended Audience :: Developers
|
|
14
14
|
Classifier: License :: OSI Approved :: MIT License
|
|
15
15
|
Classifier: Natural Language :: English
|
|
16
16
|
Classifier: Operating System :: OS Independent
|
|
17
17
|
Classifier: Programming Language :: Python :: 3
|
|
18
|
-
Classifier: Programming Language :: Python :: 3.9
|
|
19
|
-
Classifier: Programming Language :: Python :: 3.10
|
|
20
18
|
Classifier: Programming Language :: Python :: 3.11
|
|
21
19
|
Classifier: Programming Language :: Python :: 3.12
|
|
22
20
|
Classifier: Programming Language :: Python :: 3.13
|
|
21
|
+
Classifier: Programming Language :: Python :: 3.10
|
|
22
|
+
Classifier: Programming Language :: Python :: 3.9
|
|
23
23
|
Classifier: Topic :: Software Development :: Libraries :: Python Modules
|
|
24
|
-
Requires-Dist: executiontime (
|
|
24
|
+
Requires-Dist: executiontime (==0.4.4)
|
|
25
25
|
Requires-Dist: redis (>=5.2.1,<6.0.0)
|
|
26
26
|
Project-URL: Repository, https://github.com/AmadeusITGroup/RedisCache
|
|
27
27
|
Description-Content-Type: text/markdown
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
# For more details on this file see: https://python-poetry.org/docs/pyproject/
|
|
2
2
|
[tool.poetry]
|
|
3
3
|
name = "rediscache"
|
|
4
|
-
version = "1.0.
|
|
4
|
+
version = "1.0.3"
|
|
5
5
|
description = "Redis caching of functions evolving over time"
|
|
6
6
|
authors = ["Pierre Cart-Grandjean <pcart-grandjean@amadeus.com>"]
|
|
7
7
|
license = "MIT"
|
|
@@ -25,16 +25,15 @@ classifiers = [
|
|
|
25
25
|
packages = [{ include = "rediscache" }]
|
|
26
26
|
|
|
27
27
|
[tool.poetry.dependencies]
|
|
28
|
-
python = "^3.
|
|
28
|
+
python = "^3.11"
|
|
29
29
|
redis = "^5.2.1"
|
|
30
|
-
executiontime = "
|
|
30
|
+
executiontime = "0.4.4"
|
|
31
31
|
|
|
32
32
|
[tool.poetry.group.dev.dependencies]
|
|
33
33
|
pylint = "^3.3.5"
|
|
34
34
|
pytest = "^8.3.5"
|
|
35
35
|
pdbpp = "^0.10.3"
|
|
36
36
|
mypy = "^1.15.0"
|
|
37
|
-
safety = "^3.3.1"
|
|
38
37
|
black = "^25.1.0"
|
|
39
38
|
pytest-cov = "^6.0.0"
|
|
40
39
|
tornado = "^6.4.2"
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|