Skip to content

Commit 7226c1d

Browse files
committed
bump wpilib to 2026 beta
1 parent 618072c commit 7226c1d

File tree

13 files changed

+30
-30
lines changed

13 files changed

+30
-30
lines changed

.github/pull_request_template.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,6 @@ Merge checklist:
1414
- [ ] This PR has been [linted](https://docs.photonvision.org/en/latest/docs/contributing/linting.html).
1515
- [ ] If this PR changes behavior or adds a feature, user documentation is updated
1616
- [ ] If this PR touches photon-serde, all messages have been regenerated and hashes have not changed unexpectedly
17-
- [ ] If this PR touches configuration, this is backwards compatible with settings back to v2025.3.2
17+
- [ ] If this PR touches configuration, this is backwards compatible with settings back to v2026.1.1-beta-1
1818
- [ ] If this PR touches pipeline settings or anything related to data exchange, the frontend typing is updated
1919
- [ ] If this PR addresses a bug, a regression test for it is added

build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ plugins {
44
id "cpp"
55
id "com.diffplug.spotless" version "6.24.0"
66
id "edu.wpi.first.wpilib.repositories.WPILibRepositoriesPlugin" version "2020.2"
7-
id "edu.wpi.first.GradleRIO" version "2025.3.2"
7+
id "edu.wpi.first.GradleRIO" version "2026.1.1-beta-1"
88
id 'edu.wpi.first.WpilibTools' version '1.3.0'
99
id 'com.google.protobuf' version '0.9.3' apply false
1010
id 'edu.wpi.first.GradleJni' version '1.1.0'
@@ -32,7 +32,7 @@ ext.allOutputsFolder = file("$project.buildDir/outputs")
3232
apply from: "versioningHelper.gradle"
3333

3434
ext {
35-
wpilibVersion = "2025.3.2"
35+
wpilibVersion = "2026.1.1-beta-1"
3636
wpimathVersion = wpilibVersion
3737
openCVYear = "2025"
3838
openCVversion = "4.10.0-3"

docs/source/docs/advanced-installation/sw_install/windows-pc.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ Bonjour provides more stable networking when using Windows PCs. Install [Bonjour
1212

1313
## Installing Java
1414

15-
PhotonVision requires a JDK installed and on the system path. **JDK 17 is needed. Windows Users must use the JDK that ships with WPILib.** [Download and install it from here.](https://github.com/wpilibsuite/allwpilib/releases/tag/v2025.3.2) Either ensure the only Java on your PATH is the WPILIB Java or specify it to gradle with `-Dorg.gradle.java.home=C:\Users\Public\wpilib\2025\jdk`:
15+
PhotonVision requires a JDK installed and on the system path. **JDK 17 is needed. Windows Users must use the JDK that ships with WPILib.** [Download and install it from here.](https://github.com/wpilibsuite/allwpilib/releases/tag/2026.1.1-beta-1) Either ensure the only Java on your PATH is the WPILIB Java or specify it to gradle with `-Dorg.gradle.java.home=C:\Users\Public\wpilib\2025\jdk`:
1616

1717
```
1818
> ./gradlew run "-Dorg.gradle.java.home=C:\Users\Public\wpilib\2025\jdk"

photon-lib/py/setup.py

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -61,11 +61,11 @@
6161
version=versionString,
6262
install_requires=[
6363
"numpy~=2.1",
64-
"wpilib<2026,>=2025.3.2",
65-
"robotpy-wpimath<2026,>=2025.3.2",
66-
"robotpy-apriltag<2026,>=2025.3.2",
67-
"robotpy-cscore<2026,>=2025.3.2",
68-
"pyntcore<2026,>=2025.3.2",
64+
"wpilib<2026,>=2026.1.1-beta-1",
65+
"robotpy-wpimath<2026,>=2026.1.1-beta-1",
66+
"robotpy-apriltag<2026,>=2026.1.1-beta-1",
67+
"robotpy-cscore<2026,>=2026.1.1-beta-1",
68+
"pyntcore<2026,>=2026.1.1-beta-1",
6969
"opencv-python;platform_machine!='roborio'",
7070
],
7171
description=descriptionStr,

photonlib-cpp-examples/aimandrange/build.gradle

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
plugins {
22
id "cpp"
33
id "google-test-test-suite"
4-
id "edu.wpi.first.GradleRIO" version "2025.3.2"
4+
id "edu.wpi.first.GradleRIO" version "2026.1.1-beta-1"
55
}
66

77
repositories {
@@ -11,8 +11,8 @@ repositories {
1111

1212
wpi.maven.useLocal = false
1313
wpi.maven.useDevelopment = false
14-
wpi.versions.wpilibVersion = "2025.3.2"
15-
wpi.versions.wpimathVersion = "2025.3.2"
14+
wpi.versions.wpilibVersion = "2026.1.1-beta-1"
15+
wpi.versions.wpimathVersion = "2026.1.1-beta-1"
1616

1717
// Define my targets (RoboRIO) and artifacts (deployable files)
1818
// This is added by GradleRIO's backing project DeployUtils.

photonlib-cpp-examples/aimattarget/build.gradle

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
plugins {
22
id "cpp"
33
id "google-test-test-suite"
4-
id "edu.wpi.first.GradleRIO" version "2025.3.2"
4+
id "edu.wpi.first.GradleRIO" version "2026.1.1-beta-1"
55
}
66

77
repositories {
@@ -11,8 +11,8 @@ repositories {
1111

1212
wpi.maven.useLocal = false
1313
wpi.maven.useDevelopment = false
14-
wpi.versions.wpilibVersion = "2025.3.2"
15-
wpi.versions.wpimathVersion = "2025.3.2"
14+
wpi.versions.wpilibVersion = "2026.1.1-beta-1"
15+
wpi.versions.wpimathVersion = "2026.1.1-beta-1"
1616

1717
// Define my targets (RoboRIO) and artifacts (deployable files)
1818
// This is added by GradleRIO's backing project DeployUtils.

photonlib-cpp-examples/poseest/build.gradle

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
plugins {
22
id "cpp"
33
id "google-test-test-suite"
4-
id "edu.wpi.first.GradleRIO" version "2025.3.2"
4+
id "edu.wpi.first.GradleRIO" version "2026.1.1-beta-1"
55
}
66

77
repositories {
@@ -11,8 +11,8 @@ repositories {
1111

1212
wpi.maven.useLocal = false
1313
wpi.maven.useDevelopment = false
14-
wpi.versions.wpilibVersion = "2025.3.2"
15-
wpi.versions.wpimathVersion = "2025.3.2"
14+
wpi.versions.wpilibVersion = "2026.1.1-beta-1"
15+
wpi.versions.wpimathVersion = "2026.1.1-beta-1"
1616

1717
// Define my targets (RoboRIO) and artifacts (deployable files)
1818
// This is added by GradleRIO's backing project DeployUtils.

photonlib-java-examples/aimandrange/build.gradle

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
plugins {
22
id "java"
3-
id "edu.wpi.first.GradleRIO" version "2025.3.2"
3+
id "edu.wpi.first.GradleRIO" version "2026.1.1-beta-1"
44
}
55

66
sourceCompatibility = JavaVersion.VERSION_17
@@ -13,8 +13,8 @@ repositories {
1313
}
1414

1515
wpi.maven.useDevelopment = true
16-
wpi.versions.wpilibVersion = "2025.3.2"
17-
wpi.versions.wpimathVersion = "2025.3.2"
16+
wpi.versions.wpilibVersion = "2026.1.1-beta-1"
17+
wpi.versions.wpimathVersion = "2026.1.1-beta-1"
1818

1919

2020
// Define my targets (RoboRIO) and artifacts (deployable files)

photonlib-java-examples/aimattarget/build.gradle

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
plugins {
22
id "java"
3-
id "edu.wpi.first.GradleRIO" version "2025.3.2"
3+
id "edu.wpi.first.GradleRIO" version "2026.1.1-beta-1"
44
}
55

66
sourceCompatibility = JavaVersion.VERSION_17
@@ -9,8 +9,8 @@ targetCompatibility = JavaVersion.VERSION_17
99
def ROBOT_MAIN_CLASS = "frc.robot.Main"
1010

1111
wpi.maven.useDevelopment = true
12-
wpi.versions.wpilibVersion = "2025.3.2"
13-
wpi.versions.wpimathVersion = "2025.3.2"
12+
wpi.versions.wpilibVersion = "2026.1.1-beta-1"
13+
wpi.versions.wpimathVersion = "2026.1.1-beta-1"
1414

1515

1616
// Define my targets (RoboRIO) and artifacts (deployable files)

photonlib-java-examples/poseest/build.gradle

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
plugins {
22
id "java"
3-
id "edu.wpi.first.GradleRIO" version "2025.3.2"
3+
id "edu.wpi.first.GradleRIO" version "2026.1.1-beta-1"
44
}
55

66
sourceCompatibility = JavaVersion.VERSION_17
@@ -9,8 +9,8 @@ targetCompatibility = JavaVersion.VERSION_17
99
def ROBOT_MAIN_CLASS = "frc.robot.Main"
1010

1111
wpi.maven.useDevelopment = true
12-
wpi.versions.wpilibVersion = "2025.3.2"
13-
wpi.versions.wpimathVersion = "2025.3.2"
12+
wpi.versions.wpilibVersion = "2026.1.1-beta-1"
13+
wpi.versions.wpimathVersion = "2026.1.1-beta-1"
1414

1515

1616
// Define my targets (RoboRIO) and artifacts (deployable files)

0 commit comments

Comments
 (0)