Skip to content

Commit 15bc2b9

Browse files
committed
Update to 1.24
1 parent 3b86444 commit 15bc2b9

File tree

3 files changed

+9
-8
lines changed

3 files changed

+9
-8
lines changed

.github/workflows/build.yml

+5-4
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ jobs:
77
runs-on: ubuntu-latest
88
strategy:
99
matrix:
10-
version: ['1.23']
10+
version: ['1.24']
1111
steps:
1212
- uses: actions/checkout@v4
1313
- name: Build
@@ -22,7 +22,7 @@ jobs:
2222
runs-on: macos-latest
2323
strategy:
2424
matrix:
25-
version: ['1.23']
25+
version: ['1.24']
2626
steps:
2727
- uses: actions/checkout@v4
2828
- name: Build
@@ -37,12 +37,13 @@ jobs:
3737
runs-on: windows-latest
3838
strategy:
3939
matrix:
40-
version: ['1.23']
40+
version: ['1.24']
4141
steps:
4242
- uses: actions/checkout@v4
43-
- uses: conda-incubator/setup-miniconda@v2
43+
- uses: conda-incubator/setup-miniconda@v3
4444
with:
4545
miniforge-version: latest
46+
conda-remove-defaults: "true"
4647
- name: Build
4748
run: |
4849
conda install -y constructor

otconda/construct.yaml

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,21 @@
11
name: otconda
2-
version: '1.23'
2+
version: '1.24'
33

44
channels:
55
- conda-forge
66

77
ignore_duplicate_files: true
88

99
specs:
10-
- python 3.10.*
10+
- python 3.12.*
1111
- conda
1212
- miniforge_console_shortcut [win]
1313
- scikit-learn
1414
- pandas
1515
- seaborn
1616
- ipython
1717
- jupyter
18-
- openturns 1.23*
18+
- openturns 1.24*
1919
- otagrum
2020
- otfftw
2121
- otfmi

test_bundle.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ def parse_modules(filename):
1515
end = False
1616
for line in construct.readlines():
1717
if start:
18-
m = re.search('^ - ([\w\-]+)', line)
18+
m = re.search(r'^ - ([\w\-]+)', line)
1919
if m is not None:
2020
modules.append(m.group(1))
2121
else:

0 commit comments

Comments
 (0)