Skip to content

Add Python 3.7 to Travis CI #272

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Aug 21, 2018
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
19 changes: 12 additions & 7 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,10 @@ before_install:
if: tag IS NOT present OR tag =~ ^cherry\-picker\-v\d+\.\d+\.\d+$
- &run-if-blurb-or-untagged
if: tag IS NOT present OR tag =~ ^blurb\-v\d+\.\d+\.\d+$
- &base-3_7
dist: xenial
sudo: required
python: "3.7"
- &install-and-test-cherry-picker
<<: *run-if-cherry-picker-or-untagged
env:
Expand All @@ -43,7 +47,7 @@ before_install:
- &deploy-base
stage: Publish dists to PYPI
<<: *run-if-tagged
python: "3.6-dev"
python: "3.6"
install:
- *cd-to-project
script:
Expand Down Expand Up @@ -75,18 +79,19 @@ jobs:
include:
- python: "3.5"
<<: *install-and-test-blurb
- python: "3.6-dev"
- python: "3.6"
<<: *install-and-test-blurb
- python: "3.7-dev"
- python: "3.7"
<<: *base-3_7
<<: *install-and-test-blurb
- python: "nightly"
- python: "nightly" # currently, it's 3.8-dev
<<: *install-and-test-blurb

- python: "3.6-dev"
- python: "3.6"
<<: *install-and-test-cherry-picker
- python: "3.7-dev"
- <<: *base-3_7
<<: *install-and-test-cherry-picker
- python: "nightly"
- python: "nightly" # currently, it's 3.8-dev
<<: *install-and-test-cherry-picker

- <<: *deploy-base
Expand Down