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
30 lines (30 loc) · 970 Bytes
/
Copy pathenvironment.yml
File metadata and controls
30 lines (30 loc) · 970 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
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
# required for jupyter notebook integration into the sphinx documentation
- pandoc
# required because newer versions have deprecated the pkg_resources module, which is needed for
# liccheck==0.9.2, gpflow==2.9.2
- setuptools<82
# 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