-
Notifications
You must be signed in to change notification settings - Fork 2
/
appveyor.yml
41 lines (34 loc) · 1.21 KB
/
appveyor.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
environment:
matrix:
- PYTHON_VERSION: "2.7"
- PYTHON_VERSION: "3.4"
platform:
- x86
- x64
matrix:
fast_finish: true
install:
- set PATH=C:\Miniconda\Scripts
- ps: If ($env:Platform -Match "x64") {$env:PATH="C:\Miniconda-x64\Scripts"}
- conda config --set always_yes yes --set changeps1 no
- conda update -q conda
- conda create -q --name python%PYTHON_VERSION% python=%PYTHON_VERSION%
- activate python%PYTHON_VERSION%
- pip install -i https://pypi.anaconda.org/carlkl/simple mingwpy
- conda install -q --name python%PYTHON_VERSION% setuptools numpy matplotlib nose pandas wheel scipy
- python.exe setup.py config_fc
- python.exe setup.py config --compiler=mingw32 --fcompiler=gfortran
- python.exe setup.py build --compiler=mingw32
- python.exe setup.py install
build: off
after_test:
# This step builds your wheels.
- python.exe setup.py bdist
- python.exe setup.py sdist
artifacts:
# bdist_wheel puts your built wheel in the dist directory
- path: dist\*
#on_success:
# You can use this step to upload your artifacts to a public website.
# See Appveyor's documentation for more details. Or you can simply
# access your wheels from the Appveyor "artifacts" tab for your build.