Skip to content

Commit

Permalink
[CI] Enable all Python version and suppress clobber messages.
Browse files Browse the repository at this point in the history
  • Loading branch information
tharen committed Jun 22, 2018
1 parent b55b793 commit faf27ec
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 14 deletions.
2 changes: 1 addition & 1 deletion .appveyor/setup_conda.bat
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ REM Create the conda environment
REM conda env create -q -n pyfvs -f %APPVEYOR_BUILD_FOLDER%\\environment.yml

set pkg=numpy pandas cython pyodbc click setuptools wheel sphinx alabaster matplotlib pip twine
conda create -y -q --update-dependencies -n=pyfvs python=%PYTHON_VERSION% %pkg%
conda create -y -q --update-deps --clobber -n=pyfvs python=%PYTHON_VERSION% %pkg%
call activate pyfvs
pip install pytest sphinxcontrib-napoleon

Expand Down
2 changes: 1 addition & 1 deletion .travis-ci/setup_conda.sh
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ conda config --add channels conda-forge

export pkg="numpy pandas cython pyodbc click setuptools wheel sphinx alabaster matplotlib pip twine"

conda create -y -q --update-deps -n pyfvs python=$TRAVIS_PYTHON_VERSION $pkg
conda create -y -q --update-deps --clobber -n pyfvs python=$TRAVIS_PYTHON_VERSION $pkg
source activate pyfvs
pip install pytest sphinxcontrib-napoleon

Expand Down
24 changes: 12 additions & 12 deletions appveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@ environment:
MPLBACKEND: "agg"
MINGW_PATH: "C:\\mingw-w64\\x86_64-6.3.0-posix-seh-rt_v5-rev1\\mingw64"

# FVS_VARIANTS: "pnc;wcc;soc;cac;ecc;oc;op"
FVS_VARIANTS: pnc
FVS_VARIANTS: "pnc;wcc;soc;cac;ecc;oc;op"
#FVS_VARIANTS: pnc

TWINE_PASSWORD:
secure: lLhgSTVGnQNINPD18gIe2g==
Expand All @@ -16,22 +16,22 @@ environment:
matrix:
# https://www.appveyor.com/docs/build-environment/#miniconda

# - MINICONDA: "C:\\Miniconda-x64"
# PYTHON_VERSION: "2.7"
# PYTHON_ARCH: "64"

# NOTE: Using the 36 install, since it is the most current version of conda
- MINICONDA: "C:\\Miniconda36-x64"
PYTHON_VERSION: "2.7"
PYTHON_ARCH: "64"

- MINICONDA: "C:\\Miniconda36-x64"
PYTHON_VERSION: "3.4"
PYTHON_ARCH: "64"

# - MINICONDA: "C:\\Miniconda35-x64"
# PYTHON_VERSION: "3.5"
# PYTHON_ARCH: "64"
- MINICONDA: "C:\\Miniconda36-x64"
PYTHON_VERSION: "3.5"
PYTHON_ARCH: "64"

# - MINICONDA: "C:\\Miniconda36-x64"
# PYTHON_VERSION: "3.6"
# PYTHON_ARCH: "64"
- MINICONDA: "C:\\Miniconda36-x64"
PYTHON_VERSION: "3.6"
PYTHON_ARCH: "64"

init:
- echo PYTHON_VERSION %PYTHON_VERSION%
Expand Down

0 comments on commit faf27ec

Please sign in to comment.