forked from queens-py/queens
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathenvironment.yml
More file actions
25 lines (25 loc) · 738 Bytes
/
environment.yml
File metadata and controls
25 lines (25 loc) · 738 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
name: queens
channels:
- conda-forge
# We want to have a reproducible setup, so we don't want default channels,
# which may be different for different users. All required channels should
# be listed explicitly here.
- nodefaults
dependencies:
- python==3.11
# to ensure that performance optimized backends are used,
# the following packages are installed from conda
# for example BLAS libraries like Intel MKL for numpy
- cython==3.0.11
- numba==0.60.0
- numpy==1.26.4
- pandas==2.2.3
- scikit-learn==1.5.2
- scipy==1.14.1
- libopenblas==0.3.28
# Only install pip-tools via pip itself since
# all other pip dependencies should be managed
# via pip-tools in the requirements.in files
- pip
- pip:
- pip-tools