Skip to content

Commit

Permalink
Test excluding specific environments in TravisCI to remove builds which
Browse files Browse the repository at this point in the history
do not have wheels.
  • Loading branch information
mansenfranzen committed Mar 15, 2019
1 parent 183bfea commit 86ca01b
Showing 1 changed file with 19 additions and 10 deletions.
29 changes: 19 additions & 10 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,16 +8,16 @@ python:
- '3.7'

env:
- ENV_STRING=pandas0.24.1
- ENV_STRING=pandas0.24.0

- ENV_STRING=pandas0.23.4
- ENV_STRING=pandas0.23.3
- ENV_STRING=pandas0.23.2
- ENV_STRING=pandas0.23.1
- ENV_STRING=pandas0.23.0

- ENV_STRING=pandas0.22.0
# - ENV_STRING=pandas0.24.1
# - ENV_STRING=pandas0.24.0
#
# - ENV_STRING=pandas0.23.4
# - ENV_STRING=pandas0.23.3
# - ENV_STRING=pandas0.23.2
# - ENV_STRING=pandas0.23.1
# - ENV_STRING=pandas0.23.0
#
# - ENV_STRING=pandas0.22.0

- ENV_STRING=pandas0.21.1
- ENV_STRING=pandas0.21.0
Expand All @@ -35,6 +35,15 @@ env:
# - ENV_STRING=pyspark2.3.1


matrix:
exclude:
- python: '3.7'
env: ENV_STRING=pandas0.21.1
- python: '3.7'
env: ENV_STRING=pandas0.21.0
- python: '3.7'
env: ENV_STRING=pandas0.20.3

dist: xenial

before_install:
Expand Down

0 comments on commit 86ca01b

Please sign in to comment.