summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLars Wirzenius <liw@liw.fi>2011-08-02 19:55:41 +0100
committerLars Wirzenius <liw@liw.fi>2011-08-02 19:55:41 +0100
commit7e532753d3990f2f59ea1bfaa432dea8ffa248fe (patch)
tree7e4abd3f7035918c0b361302c2227862100277d4
parentdd5622aed281fb23c9da6307a5e7326f0a87224c (diff)
downloadobnam-7e532753d3990f2f59ea1bfaa432dea8ffa248fe.tar.gz
Require newer version of larch, and bump repository format.
The new version of larch uses a different way to store B-tree nodes on disk, and this is incompatible with older versions, so the format bump is necessary.
-rw-r--r--debian/control4
-rw-r--r--obnamlib/repo.py2
2 files changed, 3 insertions, 3 deletions
diff --git a/debian/control b/debian/control
index ae89fb40..8d299d30 100644
--- a/debian/control
+++ b/debian/control
@@ -6,7 +6,7 @@ Standards-Version: 3.9.2
Build-Depends: debhelper (>= 7.3.8),
python-all-dev (>= 2.6.3~3),
python-coverage-test-runner,
- python-larch (>= 0.13),
+ python-larch (>= 0.21~),
python-ttystatus (>= 0.8),
python-paramiko,
python-tracing (>= 0.2),
@@ -18,7 +18,7 @@ X-Python-Version: >= 2.6
Package: obnam
Architecture: any
Depends: ${shlibs:Depends}, ${python:Depends}, ${misc:Depends},
- python-larch (>= 0.13), python-ttystatus (>= 0.8),
+ python-larch (>= 0.21~), python-ttystatus (>= 0.8),
python-paramiko, python-tracing (>= 0.2), python-cliapp (>= 0.14)
Description: online backup application
Obnam makes backups.
diff --git a/obnamlib/repo.py b/obnamlib/repo.py
index 92f116ec..b05fd736 100644
--- a/obnamlib/repo.py
+++ b/obnamlib/repo.py
@@ -116,7 +116,7 @@ class Repository(object):
'''
- format_version = 3
+ format_version = 4
def __init__(self, fs, node_size, upload_queue_size, lru_size, hooks,
idpath_depth, idpath_bits, idpath_skip):