|
87 | 87 | # * Upgrade Python to 3.9.19 (from 3.9.17).
|
88 | 88 | # 3.10.1:
|
89 | 89 | # * Build fix for China regions
|
| 90 | +# 3.11.0: |
| 91 | +# * Add support for ap-southeast-3 |
| 92 | +# * login node enhancements |
90 | 93 | MIN_PARALLEL_CLUSTER_VERSION = parse_version('3.6.0')
|
91 | 94 | # Update source/resources/default_config.yml with latest version when this is updated.
|
92 | 95 | PARALLEL_CLUSTER_VERSIONS = [
|
|
102 | 105 | '3.9.3',
|
103 | 106 | '3.10.0',
|
104 | 107 | '3.10.1',
|
| 108 | + '3.11.0', |
105 | 109 | ]
|
| 110 | +PARALLEL_CLUSTER_ENROOT_VERSIONS = { |
| 111 | + # This can be found on the head node by running 'yum info enroot' |
| 112 | + '3.11.0': '3.4.1', # confirmed |
| 113 | +} |
| 114 | +PARALLEL_CLUSTER_PYXIS_VERSIONS = { |
| 115 | + # This can be found on the head node at /opt/parallelcluster/sources |
| 116 | + '3.11.0': '0.20.0', # confirmed |
| 117 | +} |
106 | 118 | PARALLEL_CLUSTER_MUNGE_VERSIONS = {
|
107 | 119 | # This can be found on the head node at /opt/parallelcluster/sources
|
108 | 120 | # This can be found on the head node at /etc/chef/local-mode-cache/cache/
|
|
118 | 130 | '3.9.3': '0.5.15', # confirmed
|
119 | 131 | '3.10.0': '0.5.16', # confirmed
|
120 | 132 | '3.10.1': '0.5.16', # confirmed
|
| 133 | + '3.11.0': '0.5.16', # confirmed |
121 | 134 | }
|
122 | 135 | PARALLEL_CLUSTER_PYTHON_VERSIONS = {
|
123 | 136 | # This can be found on the head node at /opt/parallelcluster/pyenv/versions
|
|
133 | 146 | '3.9.3': '3.9.17', # confirmed
|
134 | 147 | '3.10.0': '3.9.19', # confirmed
|
135 | 148 | '3.10.1': '3.9.19', # confirmed
|
| 149 | + '3.11.0': '3.9.20', # confirmed |
136 | 150 | }
|
137 | 151 | PARALLEL_CLUSTER_SLURM_VERSIONS = {
|
138 | 152 | # This can be found on the head node at /etc/chef/local-mode-cache/cache/
|
|
148 | 162 | '3.9.3': '23.11.7', # confirmed
|
149 | 163 | '3.10.0': '23.11.7', # confirmed
|
150 | 164 | '3.10.1': '23.11.7', # confirmed
|
| 165 | + '3.11.0': '23.11.10', # confirmed |
151 | 166 | }
|
152 | 167 | PARALLEL_CLUSTER_PC_SLURM_VERSIONS = {
|
153 | 168 | # This can be found on the head node at /etc/chef/local-mode-cache/cache/
|
|
163 | 178 | '3.9.3': '23-11-7-1', # confirmed
|
164 | 179 | '3.10.0': '23-11-7-1', # confirmed
|
165 | 180 | '3.10.1': '23-11-7-1', # confirmed
|
| 181 | + '3.11.0': '23-11-10-1', # confirmed |
166 | 182 | }
|
167 | 183 | SLURM_REST_API_VERSIONS = {
|
168 | 184 | '23-02-2-1': '0.0.39',
|
|
173 | 189 | '23-02-7-1': '0.0.39',
|
174 | 190 | '23-11-4-1': '0.0.39',
|
175 | 191 | '23-11-7-1': '0.0.39',
|
| 192 | + '23-11-10-1': '0.0.39', |
176 | 193 | }
|
177 | 194 |
|
178 | 195 | def get_parallel_cluster_version(config):
|
|
0 commit comments