Skip to content

Commit

Permalink
Bump version to 24.04
Browse files Browse the repository at this point in the history
  • Loading branch information
PucklaJ committed Apr 26, 2024
1 parent 0595ea7 commit 4be5c03
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 7 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/tag.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down Expand Up @@ -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
Expand Down Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion .gitmodules
Original file line number Diff line number Diff line change
@@ -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
Expand Down
2 changes: 1 addition & 1 deletion lib/dynareadout
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"},
]
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@
)

setup(name='dynareadout',
version='24.03',
version='24.04',
ext_modules=[dynareadout],
zip_safe=False,
include_package_data=True,
Expand Down

0 comments on commit 4be5c03

Please sign in to comment.