mirror of
https://github.com/samsonjs/vdirsyncer.git
synced 2026-04-27 14:57:41 +00:00
Merge branch '0.16-maintenance'
This commit is contained in:
commit
01573f0d66
5 changed files with 16 additions and 7 deletions
1
.gitignore
vendored
1
.gitignore
vendored
|
|
@ -6,6 +6,7 @@ build
|
||||||
env
|
env
|
||||||
*.egg-info
|
*.egg-info
|
||||||
.cache
|
.cache
|
||||||
|
.pytest_cache
|
||||||
.eggs
|
.eggs
|
||||||
.egg
|
.egg
|
||||||
.xprocess
|
.xprocess
|
||||||
|
|
|
||||||
|
|
@ -2,7 +2,8 @@
|
||||||
"branches": {
|
"branches": {
|
||||||
"only": [
|
"only": [
|
||||||
"auto",
|
"auto",
|
||||||
"master"
|
"master",
|
||||||
|
"/^.*-maintenance$/"
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
"cache": {
|
"cache": {
|
||||||
|
|
|
||||||
|
|
@ -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
|
||||||
==============
|
==============
|
||||||
|
|
||||||
|
|
|
||||||
8
Makefile
8
Makefile
|
|
@ -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 \
|
||||||
|
|
|
||||||
|
|
@ -23,7 +23,7 @@ cfg['git'] = {
|
||||||
}
|
}
|
||||||
|
|
||||||
cfg['branches'] = {
|
cfg['branches'] = {
|
||||||
'only': ['auto', 'master']
|
'only': ['auto', 'master', '/^.*-maintenance$/']
|
||||||
}
|
}
|
||||||
|
|
||||||
cfg['install'] = """
|
cfg['install'] = """
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue