aboutsummaryrefslogtreecommitdiffstats
path: root/contrib/python/cachetools
diff options
context:
space:
mode:
authorrobot-piglet <robot-piglet@yandex-team.com>2024-03-12 11:03:50 +0300
committerrobot-piglet <robot-piglet@yandex-team.com>2024-03-12 11:13:55 +0300
commit79203d60c5457f5db27809045067968ba9e0be5a (patch)
tree2a082b81ca7c0d29717fe227f4648d342af73760 /contrib/python/cachetools
parent6c311e6884dd132aa79664e7b305716d7d25477b (diff)
downloadydb-79203d60c5457f5db27809045067968ba9e0be5a.tar.gz
Intermediate changes
Diffstat (limited to 'contrib/python/cachetools')
-rw-r--r--contrib/python/cachetools/py3/.dist-info/METADATA8
-rw-r--r--contrib/python/cachetools/py3/LICENSE2
-rw-r--r--contrib/python/cachetools/py3/README.rst6
-rw-r--r--contrib/python/cachetools/py3/cachetools/__init__.py2
-rw-r--r--contrib/python/cachetools/py3/ya.make2
5 files changed, 12 insertions, 8 deletions
diff --git a/contrib/python/cachetools/py3/.dist-info/METADATA b/contrib/python/cachetools/py3/.dist-info/METADATA
index 9504a9426b..5846ebf167 100644
--- a/contrib/python/cachetools/py3/.dist-info/METADATA
+++ b/contrib/python/cachetools/py3/.dist-info/METADATA
@@ -1,6 +1,6 @@
Metadata-Version: 2.1
Name: cachetools
-Version: 5.3.2
+Version: 5.3.3
Summary: Extensible memoizing collections and decorators
Home-page: https://github.com/tkem/cachetools/
Author: Thomas Kemmer
@@ -116,15 +116,16 @@ Related Projects
------------------------------------------------------------------------
- asyncache_: Helpers to use cachetools with async functions
+- cacheing_: Pure Python Cacheing Library
- CacheToolsUtils_: Cachetools Utilities
-- `kids.cache`_: Kids caching library
+- kids.cache_: Kids caching library
- shelved-cache_: Persistent cache for Python cachetools
License
------------------------------------------------------------------------
-Copyright (c) 2014-2023 Thomas Kemmer.
+Copyright (c) 2014-2024 Thomas Kemmer.
Licensed under the `MIT License`_.
@@ -143,6 +144,7 @@ Licensed under the `MIT License`_.
.. _MIT License: https://raw.github.com/tkem/cachetools/master/LICENSE
.. _asyncache: https://pypi.org/project/asyncache/
+.. _cacheing: https://github.com/breid48/cacheing
.. _CacheToolsUtils: https://pypi.org/project/CacheToolsUtils/
.. _kids.cache: https://pypi.org/project/kids.cache/
.. _shelved-cache: https://pypi.org/project/shelved-cache/
diff --git a/contrib/python/cachetools/py3/LICENSE b/contrib/python/cachetools/py3/LICENSE
index bd185ce7ac..67da58ecd7 100644
--- a/contrib/python/cachetools/py3/LICENSE
+++ b/contrib/python/cachetools/py3/LICENSE
@@ -1,6 +1,6 @@
The MIT License (MIT)
-Copyright (c) 2014-2022 Thomas Kemmer
+Copyright (c) 2014-2024 Thomas Kemmer
Permission is hereby granted, free of charge, to any person obtaining a copy of
this software and associated documentation files (the "Software"), to deal in
diff --git a/contrib/python/cachetools/py3/README.rst b/contrib/python/cachetools/py3/README.rst
index 42662c5a35..a5627cc114 100644
--- a/contrib/python/cachetools/py3/README.rst
+++ b/contrib/python/cachetools/py3/README.rst
@@ -91,15 +91,16 @@ Related Projects
------------------------------------------------------------------------
- asyncache_: Helpers to use cachetools with async functions
+- cacheing_: Pure Python Cacheing Library
- CacheToolsUtils_: Cachetools Utilities
-- `kids.cache`_: Kids caching library
+- kids.cache_: Kids caching library
- shelved-cache_: Persistent cache for Python cachetools
License
------------------------------------------------------------------------
-Copyright (c) 2014-2023 Thomas Kemmer.
+Copyright (c) 2014-2024 Thomas Kemmer.
Licensed under the `MIT License`_.
@@ -118,6 +119,7 @@ Licensed under the `MIT License`_.
.. _MIT License: https://raw.github.com/tkem/cachetools/master/LICENSE
.. _asyncache: https://pypi.org/project/asyncache/
+.. _cacheing: https://github.com/breid48/cacheing
.. _CacheToolsUtils: https://pypi.org/project/CacheToolsUtils/
.. _kids.cache: https://pypi.org/project/kids.cache/
.. _shelved-cache: https://pypi.org/project/shelved-cache/
diff --git a/contrib/python/cachetools/py3/cachetools/__init__.py b/contrib/python/cachetools/py3/cachetools/__init__.py
index 61c12bef47..341c1c7ff0 100644
--- a/contrib/python/cachetools/py3/cachetools/__init__.py
+++ b/contrib/python/cachetools/py3/cachetools/__init__.py
@@ -13,7 +13,7 @@ __all__ = (
"cachedmethod",
)
-__version__ = "5.3.2"
+__version__ = "5.3.3"
import collections
import collections.abc
diff --git a/contrib/python/cachetools/py3/ya.make b/contrib/python/cachetools/py3/ya.make
index 25d5ac4cdf..71b6f19603 100644
--- a/contrib/python/cachetools/py3/ya.make
+++ b/contrib/python/cachetools/py3/ya.make
@@ -2,7 +2,7 @@
PY3_LIBRARY()
-VERSION(5.3.2)
+VERSION(5.3.3)
LICENSE(MIT)