Make a maintenance release of vdirsyncer, fix #708

This commit is contained in:
Markus Unterwaditzer 2018-02-05 08:23:45 +01:00
parent cca412e7a8
commit 93df284d3c
4 changed files with 5 additions and 3 deletions

1
.gitignore vendored
View file

@ -6,6 +6,7 @@ build
env env
*.egg-info *.egg-info
.cache .cache
.pytest_cache
.eggs .eggs
.egg .egg
.xprocess .xprocess

View file

@ -2,7 +2,8 @@
"branches": { "branches": {
"only": [ "only": [
"auto", "auto",
"master" "master",
"/^.*-maintenance$/"
] ]
}, },
"cache": "pip", "cache": "pip",

View file

@ -17,7 +17,7 @@ cfg['git'] = {
} }
cfg['branches'] = { cfg['branches'] = {
'only': ['auto', 'master'] 'only': ['auto', 'master', '/^.*-maintenance$/']
} }
cfg['install'] = """ cfg['install'] = """

View file

@ -299,7 +299,7 @@ class StorageTests(object):
@given(value=st.one_of( @given(value=st.one_of(
st.none(), st.none(),
printable_characters_strategy.filter(lambda x: x.strip() != x) printable_characters_strategy
)) ))
def test_metadata_normalization(self, requires_metadata, s, value): def test_metadata_normalization(self, requires_metadata, s, value):
x = s.get_meta('displayname') x = s.get_meta('displayname')