-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpython-modules-list.sh
More file actions
105 lines (86 loc) · 4 KB
/
python-modules-list.sh
File metadata and controls
105 lines (86 loc) · 4 KB
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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
package: Python-modules-list
version: "1.0"
env:
PIP_BASE_REQUIREMENTS: |
pip < 26.0
setuptools == 59.6.0; python_version < '3.12'
setuptools == 70.0.0; python_version >= '3.12'
wheel == 0.37.1; python_version < '3.12'
wheel == 0.42.0; python_version >= '3.12'
PIP_REQUIREMENTS: |
# This is a pip requirements file. For documentation see:
# https://pip.pypa.io/en/stable/reference/requirements-file-format/
# For valid environment markers (after the ';'), see:
# https://peps.python.org/pep-0508/#environment-markers
ipykernel == 5.1.0; python_version < '3.11'
ipykernel == 6.29.1; python_version >= '3.11'
ipython == 7.4.0; python_version < '3.11'
ipython == 8.21.0; python_version >= '3.11'
ipywidgets == 7.4.2; python_version < '3.11'
ipywidgets == 8.1.1; python_version >= '3.11'
metakernel == 0.20.14; python_version < '3.11'
metakernel == 0.30.1; python_version >= '3.11'
notebook == 5.7.8; python_version < '3.11'
notebook == 7.0.7; python_version >= '3.11'
scons == 4.1.0; python_version < '3.11'
scons == 4.6.0.post1; python_version >= '3.11'
requests == 2.27.1; python_version < '3.11'
requests == 2.31.0; python_version >= '3.11'
PyYAML == 6.0.1
uproot == 4.1.0
responses == 0.10.6
psutil == 5.8.0; python_version < '3.10'
psutil == 5.9.0; python_version == '3.10'
psutil == 5.9.5; python_version >= '3.11'
numpy == 1.16.2; python_version < '3.8'
numpy == 1.19.5; python_version == '3.8'
numpy; python_version >= '3.9'
scipy == 1.2.1; python_version < '3.8'
scipy == 1.6.1; python_version == '3.8'
scipy == 1.9.3; python_version >= '3.9' and python_version <= '3.10'
scipy == 1.10.1; python_version == '3.11'
scipy == 1.12.0; python_version == '3.12'
scipy == 1.14.1; python_version == '3.13'
scipy; python_version >= '3.13'
Cython == 0.29.16; python_version < '3.8'
Cython >= 3.0.0; python_version >= '3.8'
seaborn == 0.9.0; python_version < '3.9'
seaborn == 0.13.2; python_version >= '3.9'
scikit-learn == 0.20.3; python_version < '3.8'
scikit-learn == 1.3.0; python_version >= '3.8' and python_version < '3.13'
scikit-learn; python_version >= '3.13'
sklearn-evaluation == 0.4; python_version < '3.9'
sklearn-evaluation == 0.5.2; python_version == '3.9'
sklearn-evaluation == 0.8.1; python_version == '3.10'
sklearn-evaluation == 0.12.0; python_version >= '3.11'
Keras == 2.2.4; python_version < '3.8'
Keras == 2.4.3; python_version == '3.8'
Keras == 2.15.0; python_version >= '3.9' and python_version <= '3.11'
tensorflow == 1.13.1; python_version < '3.8'
tensorflow == 2.4.1; python_version == '3.8'
# Pinned to 2.15.1 for compatibility with https://github.com/onnx/tensorflow-onnx
tensorflow == 2.15.1; python_version >= '3.9' and python_version <= '3.11'
# See version compatibility table at https://pypi.org/project/tensorflow-metal/
# Temporarily disabled as it brings validation loss regressions in some cases [O2-5627]
# tensorflow-metal == 1.0.0; sys_platform == 'darwin' and python_version == '3.11'
xgboost == 0.82; python_version < '3.8'
xgboost == 1.3.3; python_version == '3.8'
xgboost == 1.2.0; python_version >= '3.9' and python_version < '3.11'
xgboost == 1.7.5; python_version >= '3.11'
dryable == 1.0.3; python_version < '3.9'
dryable == 1.0.5; python_version >= '3.9'
pandas == 0.24.2; python_version < '3.8'
pandas == 1.2.3; python_version == '3.8'
pandas == 1.5.3; python_version >= '3.9' and python_version < '3.13'
pandas; python_version >= '3.13'
dask[array,dataframe,distributed] == 2023.2.0; python_version < '3.11'
dask[array,dataframe,distributed] == 2023.12.1; python_version >= '3.11'
dask_jobqueue == 0.8.2
# readline is needed by alien.py (xjalienfs)
gnureadline
build_requires:
- alibuild-recipe-tools
---
#!/bin/bash -e
mkdir -p "$INSTALLROOT/etc/modulefiles"
alibuild-generate-module > "$INSTALLROOT/etc/modulefiles/$PKGNAME"