From 5f6e0dc4a13ee6bc91b9df6899166c25f1aa8be2 Mon Sep 17 00:00:00 2001 From: Joar Wandborg Date: Tue, 11 Dec 2018 11:08:11 +0100 Subject: [PATCH] Use older nightly, latest nigtly fails with an error See #4 --- .travis.yml | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/.travis.yml b/.travis.yml index 1a29a0a..10024c4 100644 --- a/.travis.yml +++ b/.travis.yml @@ -11,7 +11,9 @@ cache: - $HOME/.cache/pip env: global: - - RUST_VERSION=nightly + # Minimum version required by PyO3 + # Latest nightly does not work in manylinux container + - RUSTCSV_RUST_VERSION=nightly-2018-11-03 - RUSTCSV_BUILD_DEBUG=False before_install: @@ -21,8 +23,7 @@ before_install: - pipenv install --dev --deploy install: -- curl https://sh.rustup.rs -sSf | sh -s -- -y --default-toolchain $RUST_VERSION -- export PATH="$HOME/.cargo/bin:$PATH" +- ./travis/instal-rust.sh - make develop-release stages: