-
Notifications
You must be signed in to change notification settings - Fork 68
/
mlos-windows.yml
49 lines (49 loc) · 1.51 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
45
46
47
48
49
name: mlos
channels:
# Note: we have to reverse the channel priority for Windows to accomodate strict channel_priority setups.
- conda-forge
- defaults
dependencies:
# Basic dev environment packages.
# All other dependencies for the mlos modules come from pip.
- pip
- python-build
- jupyter
- ipykernel
- nb_conda_kernels
- matplotlib-base<3.9
- scikit-learn
- seaborn
- pandas
- pyarrow
- swig
# FIXME: Temporarily avoid broken libpq that's missing client headers.
- libpq<17.0
- python
# Install an SMAC requirement pre-compiled from conda-forge.
# This also requires a more recent vs2015_runtime from conda-forge.
- pyrfr>=0.9.0
- pip:
- bump2version
- check-jsonschema
# Fixed versions for easier maintainability.
# Dependabot can update explicitly as necessary.
- pre-commit==4.0.1
- pycodestyle==2.12.1
- pylint==3.3.3
- tomlkit
- mypy==1.14.1
- pandas-stubs
- types-beautifulsoup4
- types-colorama
- types-jsonschema
- types-pygments
- types-requests
- types-setuptools
- pyarrow
# Workaround a pylance issue in vscode that prevents it finding the latest
# method of pip installing editable modules.
# https://github.com/microsoft/pylance-release/issues/3473
- "--config-settings editable_mode=compat --editable ../mlos_core[full-tests]"
- "--config-settings editable_mode=compat --editable ../mlos_bench[full-tests]"
- "--config-settings editable_mode=compat --editable ../mlos_viz[full-tests]"