Skip to content

Commit

Permalink
Merge pull request #261 from choderalab/PrepPy36
Browse files Browse the repository at this point in the history
Enable py 3.6 testing
  • Loading branch information
Lnaden committed Feb 24, 2017
2 parents f8c61de + 623a12d commit bf5e96b
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 5 deletions.
1 change: 1 addition & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,7 @@ env:
- python=2.7 CONDA_PY=27
- python=3.4 CONDA_PY=34
- python=3.5 CONDA_PY=35
- python=3.6 CONDA_PY=36

global:
- ORGNAME="omnia"
Expand Down
10 changes: 8 additions & 2 deletions appveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,13 +10,19 @@ environment:
PYTHON_VERSION: "2.7"
PYTHON_ARCH: "64"
CONDA_PY: "27"
CONDA_NPY: "19"
CONDA_NPY: "112"

- PYTHON: "C:\\Python34_64"
PYTHON_VERSION: "3.4"
PYTHON_ARCH: "64"
CONDA_PY: "34"
CONDA_NPY: "19"
CONDA_NPY: "111"

- PYTHON: "C:\\Python36_64"
PYTHON_VERSION: "3.6"
PYTHON_ARCH: "64"
CONDA_PY: "36"
CONDA_NPY: "112"

install:
# this installs the appropriate Miniconda (Py2/Py3, 32/64 bit),
Expand Down
6 changes: 3 additions & 3 deletions devtools/appveyor/install.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,10 @@ $MINICONDA_URL = "http://repo.continuum.io/miniconda/"

function DownloadMiniconda ($python_version, $platform_suffix) {
$webclient = New-Object System.Net.WebClient
if ($python_version -match "3.4") {
$filename = "Miniconda3-3.7.3-Windows-" + $platform_suffix + ".exe"
} else {
if ($python_version -match "2.7") {
$filename = "Miniconda-3.7.3-Windows-" + $platform_suffix + ".exe"
} else {
$filename = "Miniconda3-3.7.3-Windows-" + $platform_suffix + ".exe"
}
$url = $MINICONDA_URL + $filename

Expand Down

0 comments on commit bf5e96b

Please sign in to comment.