Skip to content
Merged
Show file tree
Hide file tree
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
7 changes: 5 additions & 2 deletions appveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,10 +10,12 @@ environment:
- PYTHON: "C:\\Python27-conda32"
PYTHON_VERSION: "2.7"
PYTHON_ARCH: "32"
CONDA_ENV: "py27-windows"

- PYTHON: "C:\\Python36-conda64"
PYTHON_VERSION: "3.6"
PYTHON_ARCH: "64"
CONDA_ENV: "py36-windows"

install:
# Install miniconda Python
Expand All @@ -28,8 +30,9 @@ install:
- "python --version"
- "python -c \"import struct; print(struct.calcsize('P') * 8)\""

# install xarray and depenencies
- "conda install --yes --quiet pip pytest numpy pandas scipy netCDF4 matplotlib dask"
# install xarray and dependencies
- "conda env create --file ./ci/requirements-%CONDA_ENV%.yml"
- "activate test_env"
- "python setup.py install"

build: false
Expand Down
13 changes: 13 additions & 0 deletions ci/requirements-py27-windows.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
name: test_env
channels:
- conda-forge
dependencies:
- python=2.7
- dask
- matplotlib
- netCDF4
- numpy
- pandas
- pip
- pytest
- scipy
13 changes: 13 additions & 0 deletions ci/requirements-py36-windows.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
name: test_env
channels:
- conda-forge
dependencies:
- python=3.6
- dask
- matplotlib
- netCDF4
- numpy
- pandas
- pip
- pytest
- scipy