Skip to content

Commit

Permalink
Do not test against Py3.5
Browse files Browse the repository at this point in the history
  • Loading branch information
jaimergp committed Feb 20, 2018
1 parent 39b0e01 commit 1d93d02
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 11 deletions.
7 changes: 1 addition & 6 deletions .appveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,6 @@ environment:
BINSTAR_TOKEN:
secure: zW96v77uhbDdArc0805i/CDIvVpZvqCJyJ+WgSE1b65nPLO0nGUwmZ9qshUICIba
matrix:
- PYTHON: "C:\\Python35_64"
PYTHON_VERSION: "3.5"
PYTHON_ARCH: "64"
CONDA_PY: "35"

- PYTHON: "C:\\Python36_64"
PYTHON_VERSION: "3.6"
PYTHON_ARCH: "64"
Expand All @@ -30,7 +25,7 @@ install:
- conda build -c omnia -c bioconda devtools/conda-recipe
- IF "%conda_upload%"=="true" conda install -y constructor
- IF "%conda_upload%"=="true" conda remove -y --force constructor
- IF "%conda_upload%"=="true" pip install -U https://github.com/jaimergp/constructor/archive/jinja-env.zip
- IF "%conda_upload%"=="true" pip install -U --no-deps https://github.com/jaimergp/constructor/archive/jinja-env.zip
- IF "%conda_upload%"=="true" constructor .

artifacts:
Expand Down
3 changes: 1 addition & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@
env:
matrix:
- MYCONDAPY=2.7
- MYCONDAPY=3.5
- MYCONDAPY=3.6

####
Expand Down Expand Up @@ -94,7 +93,7 @@ before_deploy:
- if [ "${MYCONDAPY}" = "3.6" ]; then
conda install constructor;
conda remove --force constructor;
pip install -U https://github.com/jaimergp/constructor/archive/jinja-env.zip;
pip install -U --no-deps https://github.com/jaimergp/constructor/archive/jinja-env.zip;
export CONDA_PREFIX=$HOME/miniconda;
constructor . ;
fi
Expand Down
1 change: 1 addition & 0 deletions construct.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ channels:
- https://conda.anaconda.org/insilichem
- https://conda.anaconda.org/omnia
- https://repo.continuum.io/pkgs/main/
- https://conda.anaconda.org/conda-forge [win]

conda_default_channels:
- https://conda.anaconda.org/insilichem
Expand Down
6 changes: 3 additions & 3 deletions devtools/ci/install-miniconda.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-latest-Windows-" + $platform_suffix + ".exe"
} else {
if ($python_version -match "2.7") {
$filename = "Miniconda2-latest-Windows-" + $platform_suffix + ".exe"
} else {
$filename = "Miniconda3-latest-Windows-" + $platform_suffix + ".exe"
}
$url = $MINICONDA_URL + $filename

Expand Down

0 comments on commit 1d93d02

Please sign in to comment.