Merge branch '0.16-maintenance'

This commit is contained in:
Markus Unterwaditzer 2018-02-05 15:54:17 +01:00
commit 01573f0d66
5 changed files with 16 additions and 7 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": { "cache": {

View file

@ -16,6 +16,13 @@ Version 0.17.0
XML. See :gh:`688`. XML. See :gh:`688`.
- ownCloud and Baikal are no longer tested. - ownCloud and Baikal are no longer tested.
Version 0.16.4
==============
*released on 05 February 2018*
- Fix tests for new Hypothesis version. (Literally no other change included)
Version 0.16.3 Version 0.16.3
============== ==============

View file

@ -71,7 +71,7 @@ install-servers:
done done
install-test: install-servers install-test: install-servers
pip install -r test-requirements.txt pip install -Ur test-requirements.txt
set -xe && if [ "$$REQUIREMENTS" = "devel" ]; then \ set -xe && if [ "$$REQUIREMENTS" = "devel" ]; then \
pip install -U --force-reinstall \ pip install -U --force-reinstall \
git+https://github.com/DRMacIver/hypothesis \ git+https://github.com/DRMacIver/hypothesis \
@ -81,7 +81,7 @@ install-test: install-servers
[ -z "$(TEST_EXTRA_PACKAGES)" ] || pip install $(TEST_EXTRA_PACKAGES) [ -z "$(TEST_EXTRA_PACKAGES)" ] || pip install $(TEST_EXTRA_PACKAGES)
install-style: install-docs install-style: install-docs
pip install flake8 flake8-import-order 'flake8-bugbear>=17.3.0' pip install -U flake8 flake8-import-order 'flake8-bugbear>=17.3.0'
style: style:
flake8 flake8
@ -94,7 +94,7 @@ travis-conf:
python3 scripts/make_travisconf.py > .travis.yml python3 scripts/make_travisconf.py > .travis.yml
install-docs: install-docs:
pip install -r docs-requirements.txt pip install -Ur docs-requirements.txt
docs: docs:
cd docs && make html cd docs && make html
@ -114,7 +114,7 @@ release-deb:
install-dev: install-dev:
pip install -ve . pip install -ve .
[ "$(ETESYNC_TESTS)" = "false" ] || pip install -e .[etesync] [ "$(ETESYNC_TESTS)" = "false" ] || pip install -Ue .[etesync]
set -xe && if [ "$(REQUIREMENTS)" = "devel" ]; then \ set -xe && if [ "$(REQUIREMENTS)" = "devel" ]; then \
pip install -U --force-reinstall \ pip install -U --force-reinstall \
git+https://github.com/mitsuhiko/click \ git+https://github.com/mitsuhiko/click \

View file

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