diff --git a/cachier/core.py b/cachier/core.py index 84c52c4..73ef1f4 100644 --- a/cachier/core.py +++ b/cachier/core.py @@ -118,12 +118,14 @@ class _PickleCore(_BaseCore): self.cache = None def _get_cache_path(self): + # print(EXPANDED_CACHIER_DIR) if not os.path.exists(EXPANDED_CACHIER_DIR): os.makedirs(EXPANDED_CACHIER_DIR) fname = '.{}.{}'.format( self.func.__module__, self.func.__name__) # pylint: disable=W0212 fpath = os.path.abspath(os.path.join( os.path.realpath(EXPANDED_CACHIER_DIR), fname)) + # print(fpath) return fpath def _get_cache(self): diff --git a/setup.cfg b/setup.cfg index 8c54b4a..0c6137f 100644 --- a/setup.cfg +++ b/setup.cfg @@ -3,7 +3,7 @@ description-file = README.md [versioneer] VCS = git -style = pep440 +style = pep440-pre versionfile_source = cachier/_version.py versionfile_build = cachier/_version.py tag_prefix = v