Skip to content

Commit

Permalink
add cython
Browse files Browse the repository at this point in the history
  • Loading branch information
njwilson23 committed Mar 18, 2017
1 parent 7d18f99 commit 5b93ff3
Showing 1 changed file with 10 additions and 4 deletions.
14 changes: 10 additions & 4 deletions appveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,43 +10,49 @@ environment:
- PYTHON: "C:\\Python27"
PYTHON_VERSION: "2.7"
MINICONDA: "C:\\Miniconda"

- PYTHON: "C:\\Python34"
PYTHON_VERSION: "3.4"
MINICONDA: "C:\\Miniconda3"

- PYTHON: "C:\\Python35"
PYTHON_VERSION: "3.5"
MINICONDA: "C:\\Miniconda3"

- PYTHON: "C:\\Python36"
PYTHON_VERSION: "3.6"
MINICONDA: "C:\\Miniconda3"

- PYTHON: "C:\\Python27-x64"
PYTHON_VERSION: "2.7"
MINICONDA: "C:\\Miniconda-x64"

- PYTHON: "C:\\Python34-x64-x64"
PYTHON_VERSION: "3.4"
DISTUTILS_USE_SDK: "1"
MINICONDA: "C:\\Miniconda3-x64"

- PYTHON: "C:\\Python35-x64"
PYTHON_VERSION: "3.5"
MINICONDA: "C:\\Miniconda3-x64"

- PYTHON: "C:\\Python36-x64"
PYTHON_VERSION: "3.6"
MINICONDA: "C:\\Miniconda3-x64"


install:

- "%PYTHON%\\python.exe -m pip install setuptools picogeojson blosc"

- "ECHO %PYTHON_VERSION% %MINICONDA%"
- "set PATH=%MINICONDA%;%MINICONDA%\\Scripts;%PATH%"
- "conda config --set always_yes yes --set changeps1 no"
- "conda update -q conda"
- "conda info -a"
- "conda create -q -n test-environment python=%PYTHON_VERSION% numpy"
- "conda create -q -n test-environment python=%PYTHON_VERSION% numpy cython"
- "activate test-environment"
- "conda install -c conda-forge gdal=2.1.3"

- "pip install coverage"
- "%PYTHON%\\python.exe -m pip install -U setuptools picogeojson blosc converage"
- "cd C:\\projects\\karta"
- "%PYTHON%\\python.exe -m pip install . --no-deps"

Expand Down

0 comments on commit 5b93ff3

Please sign in to comment.