Skip to content

Commit 3409ae9

Browse files
committed
Update for 2026
1 parent bac370d commit 3409ae9

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

.github/workflows/dist.yml

Lines changed: 3 additions & 3 deletions
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:2025-22.04-py313
11+
image: wpilib/roborio-cross-ubuntu:2026-22.04-py314
1212

1313
steps:
1414
- uses: actions/checkout@v4
@@ -17,7 +17,7 @@ jobs:
1717
run: |
1818
apt-get update
1919
apt-get install -y cmake --no-install-recommends
20-
pip3.13 install -r requirements.txt
20+
pip3.14 install -r requirements.txt
2121
2222
- name: Build wheels
2323
run: make package
@@ -28,4 +28,4 @@ jobs:
2828
with:
2929
user: ${{ secrets.WPI_ARTIFACTORY_USERNAME }}
3030
password: ${{ secrets.WPI_ARTIFACTORY_TOKEN }}
31-
repository-url: https://wpilib.jfrog.io/artifactory/api/pypi/wpilib-python-release-2025-local
31+
repository-url: https://wpilib.jfrog.io/artifactory/api/pypi/wpilib-python-release-2026-local

build.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
#!/bin/bash -e
22

3-
OPENCV_VERSION=4.8.0
3+
OPENCV_VERSION=4.12.0
44
PYTHON_VERSION=$(/build/venv/bin/cross-python -c 'import sys; print("%d.%d" % sys.version_info[:2])')
5-
COMPILER=arm-frc2024-linux-gnueabi
5+
COMPILER=arm-frc2025-linux-gnueabi
66

77
pushd `dirname $0`
88
ROOT=`pwd`

0 commit comments

Comments
 (0)