cachetools 6.2.3__tar.gz → 6.2.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.
Files changed (31) hide show
  1. {cachetools-6.2.3 → cachetools-6.2.4}/CHANGELOG.rst +7 -0
  2. {cachetools-6.2.3/src/cachetools.egg-info → cachetools-6.2.4}/PKG-INFO +1 -1
  3. {cachetools-6.2.3 → cachetools-6.2.4}/src/cachetools/__init__.py +1 -1
  4. {cachetools-6.2.3 → cachetools-6.2.4/src/cachetools.egg-info}/PKG-INFO +1 -1
  5. {cachetools-6.2.3 → cachetools-6.2.4}/LICENSE +0 -0
  6. {cachetools-6.2.3 → cachetools-6.2.4}/MANIFEST.in +0 -0
  7. {cachetools-6.2.3 → cachetools-6.2.4}/README.rst +0 -0
  8. {cachetools-6.2.3 → cachetools-6.2.4}/docs/conf.py +0 -0
  9. {cachetools-6.2.3 → cachetools-6.2.4}/docs/index.rst +0 -0
  10. {cachetools-6.2.3 → cachetools-6.2.4}/pyproject.toml +0 -0
  11. {cachetools-6.2.3 → cachetools-6.2.4}/setup.cfg +0 -0
  12. {cachetools-6.2.3 → cachetools-6.2.4}/src/cachetools/_cached.py +0 -0
  13. {cachetools-6.2.3 → cachetools-6.2.4}/src/cachetools/_cachedmethod.py +0 -0
  14. {cachetools-6.2.3 → cachetools-6.2.4}/src/cachetools/func.py +0 -0
  15. {cachetools-6.2.3 → cachetools-6.2.4}/src/cachetools/keys.py +0 -0
  16. {cachetools-6.2.3 → cachetools-6.2.4}/src/cachetools.egg-info/SOURCES.txt +0 -0
  17. {cachetools-6.2.3 → cachetools-6.2.4}/src/cachetools.egg-info/dependency_links.txt +0 -0
  18. {cachetools-6.2.3 → cachetools-6.2.4}/src/cachetools.egg-info/top_level.txt +0 -0
  19. {cachetools-6.2.3 → cachetools-6.2.4}/tests/__init__.py +0 -0
  20. {cachetools-6.2.3 → cachetools-6.2.4}/tests/test_cache.py +0 -0
  21. {cachetools-6.2.3 → cachetools-6.2.4}/tests/test_cached.py +0 -0
  22. {cachetools-6.2.3 → cachetools-6.2.4}/tests/test_cachedmethod.py +0 -0
  23. {cachetools-6.2.3 → cachetools-6.2.4}/tests/test_fifo.py +0 -0
  24. {cachetools-6.2.3 → cachetools-6.2.4}/tests/test_func.py +0 -0
  25. {cachetools-6.2.3 → cachetools-6.2.4}/tests/test_keys.py +0 -0
  26. {cachetools-6.2.3 → cachetools-6.2.4}/tests/test_lfu.py +0 -0
  27. {cachetools-6.2.3 → cachetools-6.2.4}/tests/test_lru.py +0 -0
  28. {cachetools-6.2.3 → cachetools-6.2.4}/tests/test_rr.py +0 -0
  29. {cachetools-6.2.3 → cachetools-6.2.4}/tests/test_tlru.py +0 -0
  30. {cachetools-6.2.3 → cachetools-6.2.4}/tests/test_ttl.py +0 -0
  31. {cachetools-6.2.3 → cachetools-6.2.4}/tox.ini +0 -0
@@ -1,3 +1,10 @@
1
+ v6.2.4 (2025-12-15)
2
+ ===================
3
+
4
+ - Fix license information displayed on PyPI be using an updated
5
+ version of ``twine`` for uploading.
6
+
7
+
1
8
  v6.2.3 (2025-12-12)
2
9
  ===================
3
10
 
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: cachetools
3
- Version: 6.2.3
3
+ Version: 6.2.4
4
4
  Summary: Extensible memoizing collections and decorators
5
5
  Author-email: Thomas Kemmer <tkemmer@computer.org>
6
6
  Maintainer-email: Thomas Kemmer <tkemmer@computer.org>
@@ -12,7 +12,7 @@ __all__ = (
12
12
  "cachedmethod",
13
13
  )
14
14
 
15
- __version__ = "6.2.3"
15
+ __version__ = "6.2.4"
16
16
 
17
17
  import collections
18
18
  import collections.abc
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: cachetools
3
- Version: 6.2.3
3
+ Version: 6.2.4
4
4
  Summary: Extensible memoizing collections and decorators
5
5
  Author-email: Thomas Kemmer <tkemmer@computer.org>
6
6
  Maintainer-email: Thomas Kemmer <tkemmer@computer.org>
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes