Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update to 1.24 #9

Closed
wants to merge 1 commit into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 5 additions & 4 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -7,7 +7,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
version: ['1.23']
version: ['1.24']
steps:
- uses: actions/checkout@v4
- name: Build
@@ -22,7 +22,7 @@ jobs:
runs-on: macos-latest
strategy:
matrix:
version: ['1.23']
version: ['1.24']
steps:
- uses: actions/checkout@v4
- name: Build
@@ -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
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
2 changes: 1 addition & 1 deletion test_bundle.py
Original file line number Diff line number Diff line change
@@ -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: