forked from microsoft/MLOS
-
Notifications
You must be signed in to change notification settings - Fork 0
/
mlos.yml
45 lines (45 loc) · 1.14 KB
/
mlos.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
name: mlos
channels:
- conda-forge
- defaults
dependencies:
# Basic dev environment packages.
# All other dependencies for the mlos modules come from pip.
- pip
- pylint
- black
- pycodestyle
- pydocstyle
- flake8
- python-build
- jupyter
- ipykernel
- nb_conda_kernels
- matplotlib-base
- seaborn
- pandas
- pyarrow
- swig
# FIXME: Temporarily avoid broken libpq that's missing client headers.
- libpq<17.0
- python
- pip:
- bump2version
- check-jsonschema
- isort
- docformatter
- licenseheaders
- mypy
- pandas-stubs
- types-beautifulsoup4
- types-colorama
- types-jsonschema
- types-pygments
- types-requests
- types-setuptools
# 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]"