Skip to content

Commit

Permalink
Exclude all python/pandas version combinations from TravisCI which do
Browse files Browse the repository at this point in the history
not have wheels on pypi because building from source is time consuming
and would even require additional TravisCI configuration. As a trade
off, combinations of old pandas versions with newer python versions are
dropped in favor of maintainability and speed with Travis CI.
  • Loading branch information
mansenfranzen committed Mar 15, 2019
1 parent a16de5f commit 2a190fb
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,7 @@ env:
# - ENV_STRING=pyspark2.3.1


# Remove python/pandas version interactions which do not have wheels on pypi
matrix:
exclude:
- python: '3.7'
Expand All @@ -43,6 +44,20 @@ matrix:
env: ENV_STRING=pandas0.21.0
- python: '3.7'
env: ENV_STRING=pandas0.20.3
- python: '3.7'
env: ENV_STRING=pandas0.20.2
- python: '3.7'
env: ENV_STRING=pandas0.20.1
- python: '3.7'
env: ENV_STRING=pandas0.20.0
- python: '3.7'
env: ENV_STRING=pandas0.19.2
- python: '3.7'
env: ENV_STRING=pandas0.19.1
- python: '3.7'
env: ENV_STRING=pandas0.19.0
- python: '3.6'
env: ENV_STRING=pandas0.19.0

dist: xenial

Expand Down

0 comments on commit 2a190fb

Please sign in to comment.