From a69877f5d80aad65dc9c5e1fc8e08cf5ca9a2150 Mon Sep 17 00:00:00 2001 From: pattonw Date: Tue, 1 Sep 2020 17:42:54 -0400 Subject: [PATCH] use python requirements in travis deploy stage installing all requirements might be inefficient, but its annoying when a bug is caused by old maturin version, and you'd expect it to be fixed by updating the version in requirements.txt --- .travis.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index 898e70f..1005241 100644 --- a/.travis.yml +++ b/.travis.yml @@ -48,6 +48,6 @@ jobs: before_install: - source ./ci/travis/setup_rust.sh install: - - pip install maturin==0.7.2 + - pip install -r requirements.txt script: - maturin publish -u pattonw -p $PYPI_PASSWORD -i python3.6 -i python3.7 -i python3.8