From 0c92390741a755ab733e3d7b512b16dd14e2ce6a Mon Sep 17 00:00:00 2001 From: Julien Schueller Date: Tue, 26 Nov 2024 10:41:05 +0100 Subject: [PATCH] Update to 1.24 --- .github/workflows/build.yml | 9 +++++---- otconda/construct.yaml | 6 +++--- test_bundle.py | 2 +- 3 files changed, 9 insertions(+), 8 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index fde814d..a5a6401 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -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 diff --git a/otconda/construct.yaml b/otconda/construct.yaml index 33ede4a..8c516b5 100644 --- a/otconda/construct.yaml +++ b/otconda/construct.yaml @@ -1,5 +1,5 @@ name: otconda -version: '1.23' +version: '1.24' channels: - conda-forge @@ -7,7 +7,7 @@ channels: ignore_duplicate_files: true specs: - - python 3.10.* + - python 3.12.* - conda - miniforge_console_shortcut [win] - scikit-learn @@ -15,7 +15,7 @@ specs: - seaborn - ipython - jupyter - - openturns 1.23* + - openturns 1.24* - otagrum - otfftw - otfmi diff --git a/test_bundle.py b/test_bundle.py index c265cfc..5e34eaf 100755 --- a/test_bundle.py +++ b/test_bundle.py @@ -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: