gcache 2.0.2__tar.gz → 2.0.4__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.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.3
2
2
  Name: gcache
3
- Version: 2.0.2
3
+ Version: 2.0.4
4
4
  Summary: Fine grained caching.
5
5
  License: MIT
6
6
  Author: Galileo Technologies Inc.
@@ -21,21 +21,29 @@ Classifier: Topic :: Software Development :: Libraries
21
21
  Classifier: Topic :: Software Development :: Libraries :: Python Modules
22
22
  Classifier: Typing :: Typed
23
23
  Requires-Dist: cachetools (>=5.5.2)
24
- Requires-Dist: prometheus-client (>=0.22.1,<0.23.0)
24
+ Requires-Dist: prometheus-client (>=0.24.1,<0.25.0)
25
25
  Requires-Dist: pydantic (>=2.11.4,<3.0.0)
26
26
  Requires-Dist: redis (>=5.0.0)
27
27
  Requires-Dist: types-cachetools (>=6.2.0.20250827,<7.0.0.0)
28
- Requires-Dist: uvloop (>=0.21.0,<0.22.0)
28
+ Requires-Dist: uvloop (>=0.22.1,<0.23.0)
29
29
  Project-URL: Homepage, https://github.com/rungalileo/gcache
30
30
  Project-URL: Repository, https://github.com/rungalileo/gcache
31
31
  Description-Content-Type: text/markdown
32
32
 
33
- # GCache
34
-
35
- [![PyPI version](https://badge.fury.io/py/gcache.svg)](https://badge.fury.io/py/gcache)
36
- [![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)
37
- [![Python 3.10+](https://img.shields.io/badge/python-3.10+-blue.svg)](https://www.python.org/downloads/)
38
- [![codecov](https://codecov.io/gh/rungalileo/gcache/graph/badge.svg)](https://codecov.io/gh/rungalileo/gcache)
33
+ <p align="center">
34
+ <picture>
35
+ <source media="(prefers-color-scheme: dark)" srcset="assets/logo-wordmark.png" />
36
+ <source media="(prefers-color-scheme: light)" srcset="assets/logo-wordmark-light.png" />
37
+ <img src="assets/logo-wordmark.png" alt="GCache" width="520" />
38
+ </picture>
39
+ </p>
40
+
41
+ <p align="center">
42
+ <a href="https://badge.fury.io/py/gcache"><img src="https://badge.fury.io/py/gcache.svg" alt="PyPI version" /></a>
43
+ <a href="https://opensource.org/licenses/MIT"><img src="https://img.shields.io/badge/License-MIT-yellow.svg" alt="License: MIT" /></a>
44
+ <a href="https://www.python.org/downloads/"><img src="https://img.shields.io/badge/python-3.10+-blue.svg" alt="Python 3.10+" /></a>
45
+ <a href="https://codecov.io/gh/rungalileo/gcache"><img src="https://codecov.io/gh/rungalileo/gcache/graph/badge.svg" alt="codecov" /></a>
46
+ </p>
39
47
 
40
48
  A caching library built for moving fast without breaking things. GCache lets you rapidly add new caching use cases while maintaining structure and runtime control guardrails—so you can ramp up gradually, kill a bad cache instantly, and have full observability into what's cached across your system.
41
49
 
@@ -1,9 +1,17 @@
1
- # GCache
2
-
3
- [![PyPI version](https://badge.fury.io/py/gcache.svg)](https://badge.fury.io/py/gcache)
4
- [![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)
5
- [![Python 3.10+](https://img.shields.io/badge/python-3.10+-blue.svg)](https://www.python.org/downloads/)
6
- [![codecov](https://codecov.io/gh/rungalileo/gcache/graph/badge.svg)](https://codecov.io/gh/rungalileo/gcache)
1
+ <p align="center">
2
+ <picture>
3
+ <source media="(prefers-color-scheme: dark)" srcset="assets/logo-wordmark.png" />
4
+ <source media="(prefers-color-scheme: light)" srcset="assets/logo-wordmark-light.png" />
5
+ <img src="assets/logo-wordmark.png" alt="GCache" width="520" />
6
+ </picture>
7
+ </p>
8
+
9
+ <p align="center">
10
+ <a href="https://badge.fury.io/py/gcache"><img src="https://badge.fury.io/py/gcache.svg" alt="PyPI version" /></a>
11
+ <a href="https://opensource.org/licenses/MIT"><img src="https://img.shields.io/badge/License-MIT-yellow.svg" alt="License: MIT" /></a>
12
+ <a href="https://www.python.org/downloads/"><img src="https://img.shields.io/badge/python-3.10+-blue.svg" alt="Python 3.10+" /></a>
13
+ <a href="https://codecov.io/gh/rungalileo/gcache"><img src="https://codecov.io/gh/rungalileo/gcache/graph/badge.svg" alt="codecov" /></a>
14
+ </p>
7
15
 
8
16
  A caching library built for moving fast without breaking things. GCache lets you rapidly add new caching use cases while maintaining structure and runtime control guardrails—so you can ramp up gradually, kill a bad cache instantly, and have full observability into what's cached across your system.
9
17
 
@@ -1,6 +1,6 @@
1
1
  [project]
2
2
  name = "gcache"
3
- version = "2.0.2"
3
+ version = "2.0.4"
4
4
  description = "Fine grained caching."
5
5
  authors = [{ name = "Galileo Technologies Inc.", email = "team@rungalileo.io" }]
6
6
  readme = "README.md"
@@ -31,18 +31,18 @@ repository = "https://github.com/rungalileo/gcache"
31
31
  [tool.poetry.dependencies]
32
32
  python = "^3.10"
33
33
  pydantic = "^2.11.4"
34
- prometheus-client = "^0.22.1"
34
+ prometheus-client = "^0.24.1"
35
35
  cachetools = ">=5.5.2"
36
36
  types-cachetools = "^6.2.0.20250827"
37
37
  redis = ">=5.0.0"
38
- uvloop = "^0.21.0"
38
+ uvloop = "^0.22.1"
39
39
 
40
40
 
41
41
  [tool.poetry.group.test.dependencies]
42
42
  pytest = "^8.4.1"
43
43
  pytest-xdist = "^3.6.1"
44
- coverage = "^7.10.6"
45
- pytest-cov = "^6.2.1"
44
+ coverage = "^7.13.5"
45
+ pytest-cov = "^7.0.0"
46
46
  pytest-asyncio = "^1.1.0"
47
47
  redislite = "^6.2.912183"
48
48
 
File without changes
File without changes
File without changes
File without changes