mirror of
https://github.com/samsonjs/vdirsyncer.git
synced 2026-04-27 14:57:41 +00:00
Always upgrade dependencies
This commit is contained in:
parent
93df284d3c
commit
19dd9df091
1 changed files with 4 additions and 4 deletions
8
Makefile
8
Makefile
|
|
@ -72,7 +72,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 \
|
||||||
|
|
@ -82,7 +82,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' autopep8
|
pip install -U flake8 flake8-import-order 'flake8-bugbear>=17.3.0' autopep8
|
||||||
|
|
||||||
style:
|
style:
|
||||||
flake8
|
flake8
|
||||||
|
|
@ -95,7 +95,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
|
||||||
|
|
@ -115,7 +115,7 @@ release-deb:
|
||||||
|
|
||||||
install-dev:
|
install-dev:
|
||||||
pip install -e .
|
pip install -e .
|
||||||
[ "$(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 \
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue