-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy pathappveyor.yml
More file actions
34 lines (29 loc) · 867 Bytes
/
appveyor.yml
File metadata and controls
34 lines (29 loc) · 867 Bytes
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
image:
- Visual Studio 2019
environment:
matrix:
- PYTHON: "C:\\Python310-x64"
PYTHON_VERSION: "3.10.x"
PYTHON_ARCH: "64"
SKL: '>=1.0'
init:
- "ECHO %PYTHON% %PYTHON_VERSION% %PYTHON_ARCH%"
install:
- "%PYTHON%\\python -m pip install --upgrade pip"
# for many packages
- "%PYTHON%\\Scripts\\pip install llvmlite numba"
# install precompiled versions not available on pypi
- "%PYTHON%\\Scripts\\pip install torch torchvision torchaudio"
# other dependencies
- "%PYTHON%\\Scripts\\pip install -r requirements.txt"
- "%PYTHON%\\Scripts\\pip install scikit-learn%SKL%"
build: off
before_test:
- "%PYTHON%\\python -u setup.py build_ext --inplace --verbose"
test_script:
- "%PYTHON%\\python -u setup.py unittests"
after_test:
- "%PYTHON%\\python -u setup.py bdist_wheel"
artifacts:
- path: dist
name: mlinsights