python-cachetools 5.2.0-1 source package in Ubuntu

Changelog

python-cachetools (5.2.0-1) unstable; urgency=medium

  * New upstream release.
  * Add pybuild-plugin-pyproject to Build-Depends
  * Bump Standards-Version to 4.6.2 (no changes needed)

 -- Christian Kastner <email address hidden>  Sun, 18 Dec 2022 22:30:07 +0100

Upload details

Uploaded by:
Debian Python Team
Uploaded to:
Sid
Original maintainer:
Debian Python Team
Architectures:
all
Section:
misc
Urgency:
Medium Urgency

See full publishing history Publishing

Series Pocket Published Component Section
Lunar release main misc

Builds

Lunar: [FULLYBUILT] amd64

Downloads

File Size SHA-256 Checksum
python-cachetools_5.2.0-1.dsc 2.1 KiB 88326209fd54580d98dc958c1a7b5aff9b192993c504c1502c86b3cb63bc4970
python-cachetools_5.2.0.orig.tar.gz 24.4 KiB c96ae302de1d41f348c3cbdec0070a8dcaa51359a326d5d4ab0c7d29f843cf05
python-cachetools_5.2.0-1.debian.tar.xz 3.8 KiB 0934ba6cc87c1434ee4d5468c53f9b21c97d1c7a36e422d04f9d66fd94d6f59a

Available diffs

No changes file available.

Binary packages built by this source

python3-cachetools: extensible memoizing collections and decorators for Python 3

 This Python 3 module provides various memoizing collections and decorators,
 including variants of the Python 3 Standard Library's functools.lru_cache()
 function decorator.
 .
 The supported cache algorithms are:
 .
  * First in first out (FIFO)
  * Least recently used (LRU)
  * Most recently used (MRU)
  * Least frequently used (LFU)
  * Random replacement (RR)
  * Per-item time-to-live (TTL)
  * Time aware least recently used (TLRU)