summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRichard Maw <richard.maw@codethink.co.uk>2015-06-02 13:52:40 +0000
committerRichard Maw <richard.maw@codethink.co.uk>2015-06-12 09:00:10 +0000
commit7f2ccd3d3095a79ad0f3cd0215d062415b20e083 (patch)
treee3a873bd071016d6a3728db670ac5e96a1055b9c
parentc80c6767915b086fb41f6c81fbc6161e2b30ece1 (diff)
downloadmorph-7f2ccd3d3095a79ad0f3cd0215d062415b20e083.tar.gz
sourceresolver: Support version 5
This adds support for strip commands, and deployment extensions that rely on python libraries being available alongside the extensions in the definitions repository. Change-Id: I23dafd4968002037d182507762b09147f87bf469
-rw-r--r--morphlib/sourceresolver.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/morphlib/sourceresolver.py b/morphlib/sourceresolver.py
index 52b83238..c1e68db7 100644
--- a/morphlib/sourceresolver.py
+++ b/morphlib/sourceresolver.py
@@ -33,7 +33,7 @@ tree_cache_filename = 'trees.cache.pickle'
buildsystem_cache_size = 10000
buildsystem_cache_filename = 'detected-chunk-buildsystems.cache.pickle'
-supported_versions = [0, 1, 2, 3, 4]
+supported_versions = [0, 1, 2, 3, 4, 5]
class PickleCacheManager(object): # pragma: no cover
'''Cache manager for PyLRU that reads and writes to Pickle files.