Skip to content

Commit

Permalink
Update to 1.24
Browse files Browse the repository at this point in the history
  • Loading branch information
jschueller committed Nov 26, 2024
1 parent 3b86444 commit 15bc2b9
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 8 deletions.
9 changes: 5 additions & 4 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
version: ['1.23']
version: ['1.24']
steps:
- uses: actions/checkout@v4
- name: Build
Expand All @@ -22,7 +22,7 @@ jobs:
runs-on: macos-latest
strategy:
matrix:
version: ['1.23']
version: ['1.24']
steps:
- uses: actions/checkout@v4
- name: Build
Expand All @@ -37,12 +37,13 @@ jobs:
runs-on: windows-latest
strategy:
matrix:
version: ['1.23']
version: ['1.24']
steps:
- uses: actions/checkout@v4
- uses: conda-incubator/setup-miniconda@v2
- uses: conda-incubator/setup-miniconda@v3
with:
miniforge-version: latest
conda-remove-defaults: "true"
- name: Build
run: |
conda install -y constructor
Expand Down
6 changes: 3 additions & 3 deletions otconda/construct.yaml
Original file line number Diff line number Diff line change
@@ -1,21 +1,21 @@
name: otconda
version: '1.23'
version: '1.24'

channels:
- conda-forge

ignore_duplicate_files: true

specs:
- python 3.10.*
- python 3.12.*
- conda
- miniforge_console_shortcut [win]
- scikit-learn
- pandas
- seaborn
- ipython
- jupyter
- openturns 1.23*
- openturns 1.24*
- otagrum
- otfftw
- otfmi
Expand Down
2 changes: 1 addition & 1 deletion test_bundle.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ def parse_modules(filename):
end = False
for line in construct.readlines():
if start:
m = re.search('^ - ([\w\-]+)', line)
m = re.search(r'^ - ([\w\-]+)', line)
if m is not None:
modules.append(m.group(1))
else:
Expand Down

0 comments on commit 15bc2b9

Please sign in to comment.