Skip to content

Commit 07affd4

Browse files
authored
RobotPy 2026 beta (#2237)
## Description This updates RobotPy and our Python examples to the 2026 beta. ## Meta Merge checklist: - [x] Pull Request title is [short, imperative summary](https://cbea.ms/git-commit/) of proposed changes - [x] The description documents the _what_ and _why_ - [ ] If this PR changes behavior or adds a feature, user documentation is updated - [ ] If this PR touches photon-serde, all messages have been regenerated and hashes have not changed unexpectedly - [ ] If this PR touches configuration, this is backwards compatible with settings back to v2025.3.2 - [ ] If this PR touches pipeline settings or anything related to data exchange, the frontend typing is updated - [ ] If this PR addresses a bug, a regression test for it is added
1 parent a585a1d commit 07affd4

File tree

4 files changed

+8
-8
lines changed

4 files changed

+8
-8
lines changed

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.1.1b1",
65+
"robotpy-wpimath==2026.1.1b1",
66+
"robotpy-apriltag==2026.1.1b1",
67+
"robotpy-cscore==2026.1.1b1",
68+
"pyntcore==2026.1.1b1",
6969
"opencv-python;platform_machine!='roborio'",
7070
],
7171
description=descriptionStr,

photonlib-python-examples/aimandrange/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
[tool.robotpy]
77

88
# Version of robotpy this project depends on
9-
robotpy_version = "2026.1.1-beta-1"
9+
robotpy_version = "2026.1.1b1"
1010

1111
# Which extra RobotPy components should be installed
1212
# -> equivalent to `pip install robotpy[extra1, ...]

photonlib-python-examples/aimattarget/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
[tool.robotpy]
77

88
# Version of robotpy this project depends on
9-
robotpy_version = "2026.1.1-beta-1"
9+
robotpy_version = "2026.1.1b1"
1010

1111
# Which extra RobotPy components should be installed
1212
# -> equivalent to `pip install robotpy[extra1, ...]

photonlib-python-examples/poseest/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
[tool.robotpy]
77

88
# Version of robotpy this project depends on
9-
robotpy_version = "2026.1.1-beta-1"
9+
robotpy_version = "2026.1.1b1"
1010

1111
# Which extra RobotPy components should be installed
1212
# -> equivalent to `pip install robotpy[extra1, ...]

0 commit comments

Comments
 (0)