File tree 3 files changed +9
-8
lines changed
3 files changed +9
-8
lines changed Original file line number Diff line number Diff line change 7
7
runs-on : ubuntu-latest
8
8
strategy :
9
9
matrix :
10
- version : ['1.23 ']
10
+ version : ['1.24 ']
11
11
steps :
12
12
- uses : actions/checkout@v4
13
13
- name : Build
22
22
runs-on : macos-latest
23
23
strategy :
24
24
matrix :
25
- version : ['1.23 ']
25
+ version : ['1.24 ']
26
26
steps :
27
27
- uses : actions/checkout@v4
28
28
- name : Build
@@ -37,12 +37,13 @@ jobs:
37
37
runs-on : windows-latest
38
38
strategy :
39
39
matrix :
40
- version : ['1.23 ']
40
+ version : ['1.24 ']
41
41
steps :
42
42
- uses : actions/checkout@v4
43
- - uses : conda-incubator/setup-miniconda@v2
43
+ - uses : conda-incubator/setup-miniconda@v3
44
44
with :
45
45
miniforge-version : latest
46
+ conda-remove-defaults : " true"
46
47
- name : Build
47
48
run : |
48
49
conda install -y constructor
Original file line number Diff line number Diff line change 1
1
name : otconda
2
- version : ' 1.23 '
2
+ version : ' 1.24 '
3
3
4
4
channels :
5
5
- conda-forge
6
6
7
7
ignore_duplicate_files : true
8
8
9
9
specs :
10
- - python 3.10 .*
10
+ - python 3.12 .*
11
11
- conda
12
12
- miniforge_console_shortcut [win]
13
13
- scikit-learn
14
14
- pandas
15
15
- seaborn
16
16
- ipython
17
17
- jupyter
18
- - openturns 1.23 *
18
+ - openturns 1.24 *
19
19
- otagrum
20
20
- otfftw
21
21
- otfmi
Original file line number Diff line number Diff line change @@ -15,7 +15,7 @@ def parse_modules(filename):
15
15
end = False
16
16
for line in construct .readlines ():
17
17
if start :
18
- m = re .search ('^ - ([\w\-]+)' , line )
18
+ m = re .search (r '^ - ([\w\-]+)' , line )
19
19
if m is not None :
20
20
modules .append (m .group (1 ))
21
21
else :
You can’t perform that action at this time.
0 commit comments