From cc475654b4240a40641adc79305a1ff1172e429e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Georges=20Dup=C3=A9ron?= Date: Sun, 22 Jan 2017 18:31:34 +0100 Subject: [PATCH] Don't run versions < 6.3, as recent implementations of syntax-parse seem to have some small incompatibilities (e.g. racket/struct is missing from old Racket versions) --- .travis.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.travis.yml b/.travis.yml index 002fc22..7113143 100644 --- a/.travis.yml +++ b/.travis.yml @@ -20,10 +20,10 @@ env: # Supply more than one RACKET_VERSION (as in the example below) to # create a Travis-CI build matrix to test against multiple Racket # versions. - - RACKET_VERSION=6.0 RECENT=false - - RACKET_VERSION=6.1 RECENT=false - - RACKET_VERSION=6.1.1 RECENT=true - - RACKET_VERSION=6.2 RECENT=true + #- RACKET_VERSION=6.0 RECENT=false + #- RACKET_VERSION=6.1 RECENT=false + #- RACKET_VERSION=6.1.1 RECENT=true + #- RACKET_VERSION=6.2 RECENT=true - RACKET_VERSION=6.3 RECENT=true - RACKET_VERSION=6.4 RECENT=true - RACKET_VERSION=6.5 RECENT=true