Skip to content

Commit c656b8f

Browse files
committed
Update for 2025
1 parent da145f1 commit c656b8f

File tree

3 files changed

+8
-8
lines changed

3 files changed

+8
-8
lines changed

Diff for: .github/workflows/dist.yml

+5-5
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ jobs:
88
runs-on: ubuntu-latest
99

1010
container:
11-
image: wpilib/roborio-cross-ubuntu:2024-22.04-py312
11+
image: wpilib/roborio-cross-ubuntu:2025-22.04-py313
1212

1313
steps:
1414
- uses: actions/checkout@v2
@@ -17,13 +17,13 @@ jobs:
1717
run: |
1818
apt-get update
1919
apt-get install -y gcc
20-
pip3.12 install -r requirements.txt
20+
pip3.13 install -r requirements.txt
2121
2222
- name: Build wheels
2323
run: make package
2424

2525
- name: Upload build artifacts
26-
uses: actions/upload-artifact@v3
26+
uses: actions/upload-artifact@v4
2727
with:
2828
name: dist
2929
path: dist
@@ -35,7 +35,7 @@ jobs:
3535

3636
steps:
3737
- name: Download build artifacts
38-
uses: actions/download-artifact@v3
38+
uses: actions/download-artifact@v4
3939
with:
4040
name: dist
4141
path: dist
@@ -45,5 +45,5 @@ jobs:
4545
with:
4646
user: ${{ secrets.WPI_ARTIFACTORY_USERNAME }}
4747
password: ${{ secrets.WPI_ARTIFACTORY_TOKEN }}
48-
repository-url: https://wpilib.jfrog.io/artifactory/api/pypi/wpilib-python-release-2024-local
48+
repository-url: https://wpilib.jfrog.io/artifactory/api/pypi/wpilib-python-release-2025-local
4949

Diff for: Makefile

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11

2-
VERSION = 0.3.24
2+
VERSION = 0.3.28
33

4-
BINRELEASE = https://github.com/xianyi/OpenBLAS/releases/download/v$(VERSION)/OpenBLAS-$(VERSION).tar.gz
4+
BINRELEASE = https://github.com/OpenMathLib/OpenBLAS/releases/download/v$(VERSION)/OpenBLAS-$(VERSION).tar.gz
55
LIBGZIP = $(abspath $(notdir ${BINRELEASE}))
66
SRCDIR = OpenBLAS-$(VERSION)
77

Diff for: data.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name = "robotpy-openblas"
2-
version = "0.3.24+r3"
2+
version = "0.3.28+r1"
33
url = "https://www.openblas.net"
44
license = "BSD"
55
install_requires = ["robotpy-libgfortran5"]

0 commit comments

Comments
 (0)