forked from microsoft/MLOS
-
Notifications
You must be signed in to change notification settings - Fork 0
/
mlos-windows.yml
44 lines (44 loc) · 1.19 KB
/
mlos-windows.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
42
43
44
name: mlos
channels:
# Note: we have to reverse the channel priority for Windows to accomodate strict channel_priority setups.
# Hence, additional dependencies may differ from the Linux setup.
- conda-forge
- defaults
dependencies:
# Basic dev environment packages.
# All other dependencies for the mlos modules come from pip.
- pip
- pylint
- pycodestyle
- autopep8
- pydocstyle
- flake8
- setuptools
- setuptools-scm
- jupyter
- ipykernel
- nb_conda_kernels
- matplotlib
- seaborn
# FIXME: for now, we are disabling support for python 3.11 due to various dependency issues.
- python<3.11
# Require a compiler to be installed/configured and build GPy directly.
- vs2019_win-64
- vswhere
- conda-forge::GPy
# Install an SMAC requirement pre-compiled from conda-forge.
# This also requires a more recent vs2015_runtime from conda-forge.
- conda-forge::pyrfr>=0.9.0
- pip:
- bump2version
- check-jsonschema
- licenseheaders
- mypy
- pandas-stubs
- types-jsonschema
- types-colorama
- types-pygments
- types-requests
- types-setuptools
- "--editable ../mlos_core[full-tests]"
- "--editable ../mlos_bench[full-tests]"