From 4be5c03951f0fd0daad2f08dadb04d941c5a692b Mon Sep 17 00:00:00 2001 From: PucklaJ Date: Fri, 26 Apr 2024 08:16:00 +0200 Subject: [PATCH] Bump version to 24.04 --- .github/workflows/tag.yml | 6 +++--- .gitmodules | 2 +- lib/dynareadout | 2 +- pyproject.toml | 2 +- setup.py | 2 +- 5 files changed, 7 insertions(+), 7 deletions(-) diff --git a/.github/workflows/tag.yml b/.github/workflows/tag.yml index 0948541..26f5f4d 100644 --- a/.github/workflows/tag.yml +++ b/.github/workflows/tag.yml @@ -24,7 +24,7 @@ jobs: compression-level: 0 build-wheels: name: ${{ matrix.os }}-${{ matrix.arch }} - runs-on: ${{ matrix.os == 'linux' && 'ubuntu' || matrix.os }}-latest + runs-on: ${{ matrix.os == 'linux' && 'ubuntu' || matrix.os }}-${{ matrix.os == 'macos' && '13' || 'latest' }} strategy: fail-fast: false matrix: @@ -72,7 +72,7 @@ jobs: test-packages: if: endsWith(github.ref, 'test') != true name: Test ${{ matrix.os }}-${{ matrix.arch }}-${{ matrix.pyver }} - runs-on: ${{ matrix.os == 'linux' && 'ubuntu' || matrix.os }}-latest + runs-on: ${{ matrix.os == 'linux' && 'ubuntu' || matrix.os }}-${{ matrix.os == 'macos' && '13' || 'latest' }} needs: build-wheels strategy: fail-fast: false @@ -112,7 +112,7 @@ jobs: test-packages-test: if: endsWith(github.ref, 'test') name: Test Test ${{ matrix.os }}-${{ matrix.arch }}-${{ matrix.pyver }} - runs-on: ${{ matrix.os == 'linux' && 'ubuntu' || matrix.os }}-latest + runs-on: ${{ matrix.os == 'linux' && 'ubuntu' || matrix.os }}-${{ matrix.os == 'macos' && '13' || 'latest' }} needs: build-wheels strategy: fail-fast: false diff --git a/.gitmodules b/.gitmodules index dda6b77..9832c9d 100644 --- a/.gitmodules +++ b/.gitmodules @@ -1,7 +1,7 @@ [submodule "src/dynareadout"] path = lib/dynareadout url = https://github.com/PucklaJ/dynareadout.git - branch = 24.03 + branch = 24.04 [submodule "src/pybind11"] path = lib/pybind11 url = https://github.com/pybind/pybind11.git diff --git a/lib/dynareadout b/lib/dynareadout index 1f119c4..05b5c67 160000 --- a/lib/dynareadout +++ b/lib/dynareadout @@ -1 +1 @@ -Subproject commit 1f119c4cac42aa2e84a55ea5bd0ee29f2aa7d2ff +Subproject commit 05b5c6764f757e875beb80db7fca7c2daff92fed diff --git a/pyproject.toml b/pyproject.toml index 4f7e634..5eea135 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta" [project] name = "dynareadout" -version = "24.03" +version = "24.04" authors = [ { name = "PucklaJ", email = "jonaas.pucher000000@gmail.com"}, ] diff --git a/setup.py b/setup.py index ebfcae8..d15adf3 100644 --- a/setup.py +++ b/setup.py @@ -80,7 +80,7 @@ ) setup(name='dynareadout', - version='24.03', + version='24.04', ext_modules=[dynareadout], zip_safe=False, include_package_data=True,