# HG changeset patch # User Cameron Simpson # Date 1736568440 -39600 # Sat Jan 11 15:07:20 2025 +1100 # Node ID 427b01e7c757a80ba628e37b01861e6e9ad3dcc7 # Parent e0f8688df6fef3ce0020d80b5e5d1bf2707002f8 Release information for cs.cache-20250111. Summary: Prevent automatic creation of the default ConvCache instance on import, which tries to make its cache directory. diff --git a/lib/python/cs/cache.py b/lib/python/cs/cache.py --- a/lib/python/cs/cache.py +++ b/lib/python/cs/cache.py @@ -39,7 +39,7 @@ from icontract import require -__version__ = '20250103-post' +__version__ = '20250111' DISTINFO = { 'keywords': ["python2", "python3"], diff --git a/release/cs.cache-20250111/CHANGES.txt b/release/cs.cache-20250111/CHANGES.txt new file mode 100644 --- /dev/null +++ b/release/cs.cache-20250111/CHANGES.txt @@ -0,0 +1,2 @@ +lib/python/cs/cache.py: cs.cache: prevent automatic creation of the default ConvCache instance on import, which tries to make its cache directory +lib/python/cs/cache.py: cs.cache: add missing import diff --git a/release/cs.cache-20250111/SUMMARY.txt b/release/cs.cache-20250111/SUMMARY.txt new file mode 100644 --- /dev/null +++ b/release/cs.cache-20250111/SUMMARY.txt @@ -0,0 +1,1 @@ +Prevent automatic creation of the default ConvCache instance on import, which tries to make its cache directory.