v5.8.0
版本发布时间: 2023-03-13 09:40:33
pypyr/pypyr最新发布版本:v5.9.1(2023-09-22 11:13:53)
summary
- convenience function to clear all caches in one call. Closes #316.
import pypyr.cache.admin as cache_admin
cache_admin.clear_all()
- disable caching entirely with new
no_cache
mode. Closes #317
from pypyr.config import config
from pypyr import pipelinerunner
# disable all caching
config.no_cache = True
# This will NOT save `my-pipe` to cache once its loaded.
context = pipelinerunner.run(pipeline_name='my-pipe')
What's Changed
- clear all cache, codecov token, tox 4 by @yaythomas in https://github.com/pypyr/pypyr/pull/318
- no cache mode by @yaythomas in https://github.com/pypyr/pypyr/pull/319
- Bump version: 5.7.1 → 5.8.0 by @yaythomas in https://github.com/pypyr/pypyr/pull/320
Full Changelog: https://github.com/pypyr/pypyr/compare/v5.7.1...v5.8.0