Skip to content

Commit

Permalink
Drop 1.22 support for rand feature (for rust-num#65)
Browse files Browse the repository at this point in the history
  • Loading branch information
termoshtt committed Oct 13, 2019
1 parent 0aef945 commit 0856fb7
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
1 change: 0 additions & 1 deletion .travis.yml
Expand Up @@ -2,7 +2,6 @@ language: rust
sudo: false
rust:
- 1.15.0
- 1.22.0 # rand
- 1.26.0 # has_i128
- 1.31.0 # 2018!
- stable
Expand Down
4 changes: 2 additions & 2 deletions ci/test_full.sh
Expand Up @@ -5,10 +5,10 @@ set -ex
echo Testing num-complex on rustc ${TRAVIS_RUST_VERSION}

FEATURES="std serde"
if [[ "$TRAVIS_RUST_VERSION" =~ ^(nightly|beta|stable|1.26.0|1.22.0)$ ]]; then
if [[ "$TRAVIS_RUST_VERSION" =~ ^(nightly|beta|stable|1.31.0)$ ]]; then
FEATURES="$FEATURES rand"
fi
if [[ "$TRAVIS_RUST_VERSION" =~ ^(nightly|beta|stable|1.26.0)$ ]]; then
if [[ "$TRAVIS_RUST_VERSION" =~ ^(nightly|beta|stable|1.31.0|1.26.0)$ ]]; then
FEATURES="$FEATURES i128"
fi

Expand Down

0 comments on commit 0856fb7

Please sign in to comment.