Skip to content
This repository was archived by the owner on Dec 6, 2023. It is now read-only.

[MRG] Continuous integration on Python 3.6 #118

Closed
wants to merge 3 commits into from
Closed
Show file tree
Hide file tree
Changes from 1 commit
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
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@ sudo: false
language: python
python:
- "2.7"
- "3.4"
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

up for debate :P

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Fine for me

- "3.5"
- "3.6"
install:
# We do this conditionally because it saves us some downloading if the
# version is the same.
Expand Down
17 changes: 6 additions & 11 deletions appveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,26 +9,21 @@ environment:
CMD_IN_ENV: "cmd /E:ON /V:ON /C .\\build_tools\\appveyor\\run_with_env.cmd"

matrix:
- PYTHON: "C:\\Python27"
PYTHON_VERSION: "2.7.8"
- PYTHON_VERSION: "2.7.13"
PYTHON_ARCH: "32"
MINICONDA: "C:\\Miniconda"

- PYTHON: "C:\\Python27-x64"
PYTHON_VERSION: "2.7.8"
- PYTHON_VERSION: "2.7.13"
PYTHON_ARCH: "64"
MINICONDA: "C:\\Miniconda-x64"

- PYTHON: "C:\\Python35"
PYTHON_VERSION: "3.5.0"
- PYTHON_VERSION: "3.6.0"
PYTHON_ARCH: "32"
MINICONDA: "C:\\Miniconda35"
MINICONDA: "C:\\Miniconda36"

- PYTHON: "C:\\Python35-x64"
PYTHON_VERSION: "3.5.0"
- PYTHON_VERSION: "3.6.0"
PYTHON_ARCH: "64"
MINICONDA: "C:\\Miniconda35-x64"

MINICONDA: "C:\\Miniconda36-x64"


install:
Expand Down