Skip to content

Commit 998ffbf

Browse files
authored
workflows: build-numpy: upgrade to v2.5.2 (#212)
Signed-off-by: Trevor Gamblin <tgamblin@baylibre.com>
1 parent 94cf881 commit 998ffbf

1 file changed

Lines changed: 6 additions & 6 deletions

File tree

.github/workflows/build-numpy.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -5,22 +5,22 @@ on:
55
workflow_dispatch:
66
inputs:
77
version:
8-
description: 'numpy version to build (git tag without leading v, e.g. 2.5.1)'
8+
description: 'numpy version to build (git tag without leading v, e.g. 2.5.2)'
99
required: true
10-
default: '2.5.1'
10+
default: '2.5.2'
1111
pull_request:
1212
paths:
1313
- '.github/workflows/build-numpy.yml'
1414

1515
concurrency:
16-
group: ${{ github.workflow }}-${{ inputs.version || '2.5.1' }}-${{ github.head_ref || github.run_id }}
16+
group: ${{ github.workflow }}-${{ inputs.version || '2.5.2' }}-${{ github.head_ref || github.run_id }}
1717
cancel-in-progress: true
1818

1919
permissions:
2020
contents: read # to fetch code (actions/checkout)
2121

2222
env:
23-
NUMPY_VERSION: ${{ inputs.version || '2.5.1' }}
23+
NUMPY_VERSION: ${{ inputs.version || '2.5.2' }}
2424
UV_EXTRA_INDEX_URL: https://pypi.riseproject.dev/simple/
2525
UV_INDEX_STRATEGY: unsafe-best-match
2626
UV_ONLY_BINARY: ':all:'
@@ -31,7 +31,7 @@ env:
3131

3232
jobs:
3333
build_wheels:
34-
name: Build numpy ${{ inputs.version || '2.5.1' }} ${{ matrix.python }}-manylinux_riscv64
34+
name: Build numpy ${{ inputs.version || '2.5.2' }} ${{ matrix.python }}-manylinux_riscv64
3535
runs-on: ubuntu-24.04-riscv
3636
strategy:
3737
fail-fast: false
@@ -99,7 +99,7 @@ jobs:
9999
if-no-files-found: error
100100

101101
publish:
102-
name: Publish numpy ${{ inputs.version || '2.5.1' }} to GitLab
102+
name: Publish numpy ${{ inputs.version || '2.5.2' }} to GitLab
103103
needs: [build_wheels]
104104
runs-on: ubuntu-latest
105105
permissions:

0 commit comments

Comments
 (0)