Skip to content

Commit 8b4e7bb

Browse files
Really update Python version info for 2025 (#2975)
--------- Co-authored-by: sciencewhiz <sciencewhiz@users.noreply.github.com>
1 parent 8025372 commit 8b4e7bb

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

source/docs/software/python/pyproject_toml.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -50,5 +50,5 @@ Each of the following will instruct the deploy process to install packages to th
5050
requires = ["numpy"]
5151
```
5252

53-
The packages that can be installed are stored on the [WPILib Artifactory server](https://wpilib.jfrog.io/ui/native/wpilib-python-release-2024/).
53+
The packages that can be installed are stored on the [WPILib Artifactory server](https://wpilib.jfrog.io/ui/native/wpilib-python-release-2025/).
5454
If you find that you need a package that isn't available on artifactory, consult the [roborio-wheels](https://github.com/robotpy/roborio-wheels) repository.

source/docs/zero-to-robot/step-2/python-setup.rst

+2-2
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,7 @@ Once you have installed Python, you can use pip to install RobotPy on your devel
105105
We publish prebuilt wheels on artifactory, which can be downloaded by giving the ``--extra-index-url`` option to pip:
106106

107107
```sh
108-
python3 -m pip install --extra-index-url=https://wpilib.jfrog.io/artifactory/api/pypi/wpilib-python-release-2024/simple robotpy
108+
python3 -m pip install --extra-index-url=https://wpilib.jfrog.io/artifactory/api/pypi/wpilib-python-release-2025/simple robotpy
109109
```
110110

111111
**source install**
@@ -116,7 +116,7 @@ Once you have installed Python, you can use pip to install RobotPy on your devel
116116

117117
.. warning:: Mixing our pre-built wheels with source installs may cause runtime errors. This is due to internal ABI incompatibility between compiler versions.
118118

119-
Our ARM wheels are built for Debian 11 with GCC 10.
119+
Our ARM wheels are built for Debian 12 (Bookworm) with GCC 12.
120120

121121
If you need to build with a specific compiler version, you can specify them using the :envvar:`CC` and :envvar:`CXX` environment variables:
122122

0 commit comments

Comments
 (0)