Skip to content
Merged
Show file tree
Hide file tree
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
15 changes: 7 additions & 8 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ jobs:
- uses: actions/checkout@v6
- uses: actions/setup-python@v6
with:
python-version: "3.8"
python-version: "3.13"
- name: Set version from release tag
if: github.event_name == 'release'
shell: bash
Expand Down Expand Up @@ -74,11 +74,10 @@ jobs:
pytest
- name: pytest
if: ${{ !startsWith(matrix.platform.target, 'x86') && matrix.platform.target != 'ppc64' }}
uses: uraimo/run-on-arch-action@v2
uses: uraimo/run-on-arch-action@v3
with:
arch: ${{ matrix.platform.target }}
# run-on-arch-action@v2 ships no ubuntu24.04 image; ubuntu22.04 has
# the aarch64 image needed to run the emulated test step.
# ubuntu22.04 provides the aarch64 image used to run the emulated tests.
distro: ubuntu22.04
githubToken: ${{ github.token }}
install: |
Expand Down Expand Up @@ -107,7 +106,7 @@ jobs:
- uses: actions/checkout@v6
- uses: actions/setup-python@v6
with:
python-version: "3.8"
python-version: "3.13"
- name: Set version from release tag
if: github.event_name == 'release'
shell: bash
Expand Down Expand Up @@ -143,7 +142,7 @@ jobs:
'
- name: pytest
if: ${{ !startsWith(matrix.platform.target, 'x86') }}
uses: uraimo/run-on-arch-action@v2
uses: uraimo/run-on-arch-action@v3
with:
arch: ${{ matrix.platform.target }}
distro: alpine_latest
Expand All @@ -167,7 +166,7 @@ jobs:
# 32-bit CPython 3.13, and it's a legacy target with ~no users. Those
# install from the sdist.
platform:
- runner: windows-latest
- runner: windows-2025
target: x64
python_arch: x64
- runner: windows-11-arm
Expand Down Expand Up @@ -224,7 +223,7 @@ jobs:
- uses: actions/checkout@v6
- uses: actions/setup-python@v6
with:
python-version: "3.8"
python-version: "3.13"
- name: Set version from release tag
if: github.event_name == 'release'
shell: bash
Expand Down
2 changes: 1 addition & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name = "seqfold"
# Dev default only. Releases take the version from the GitHub Release tag, which
# the CI injects here before building (see DEVELOPMENT.md). pyproject.toml reads
# this via `dynamic = ["version"]`.
version = "0.10.0"
version = "0.10.1"
edition = "2021"
description = "Predict the minimum free energy structure of nucleic acids"
license = "MIT"
Expand Down
Loading