From f34cc88604c7729d04186216a6a951df6062c431 Mon Sep 17 00:00:00 2001 From: Rahix Date: Sat, 7 Nov 2020 18:59:47 +0100 Subject: [PATCH] ci: Fix nightly to a version where rustfmt is available rustfmt has gone unavailable on nightly again. Fix the compiler to a version which rustfmt can be downloaded for. --- .travis.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.travis.yml b/.travis.yml index cf75dd2..31b8798 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,6 +1,6 @@ language: rust rust: - - nightly + - nightly-2020-10-25 cache: cargo: true @@ -19,5 +19,5 @@ install: script: - pyenv global 3.6.3 - - make + - make RUSTUP_TOOLCHAIN=nightly-2020-10-25 - cargo build --all-features -- 2.48.1