Skip to content

Commit 9d3f49f

Browse files
committed
Rust 1.8 is not supported anymore for Serde
Serde 1.0 requires Rust 1.13
1 parent 556fae6 commit 9d3f49f

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

ci/test_full.sh

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -22,12 +22,11 @@ for feature in '' bigint rational complex; do
2222
cargo test --verbose --no-default-features --features="$feature"
2323
done
2424

25+
if [ "$TRAVIS_RUST_VERSION" = 1.8.0 ]; then exit; fi
26+
2527
# Build test for the serde feature
2628
cargo build --verbose --features "serde"
2729

28-
29-
if [ "$TRAVIS_RUST_VERSION" = 1.8.0 ]; then exit; fi
30-
3130
# num-derive should build on 1.15.0+
3231
cargo build --verbose --manifest-path=derive/Cargo.toml
3332

0 commit comments

Comments
 (0)