Skip to content

Commit

Permalink
Really update Python version info for 2025 (#2975)
Browse files Browse the repository at this point in the history

---------

Co-authored-by: sciencewhiz <[email protected]>
  • Loading branch information
auscompgeek and sciencewhiz authored Feb 16, 2025
1 parent 8025372 commit 8b4e7bb
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion source/docs/software/python/pyproject_toml.rst
Original file line number Diff line number Diff line change
Expand Up @@ -50,5 +50,5 @@ Each of the following will instruct the deploy process to install packages to th
requires = ["numpy"]
```

The packages that can be installed are stored on the [WPILib Artifactory server](https://wpilib.jfrog.io/ui/native/wpilib-python-release-2024/).
The packages that can be installed are stored on the [WPILib Artifactory server](https://wpilib.jfrog.io/ui/native/wpilib-python-release-2025/).
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.
4 changes: 2 additions & 2 deletions source/docs/zero-to-robot/step-2/python-setup.rst
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ Once you have installed Python, you can use pip to install RobotPy on your devel
We publish prebuilt wheels on artifactory, which can be downloaded by giving the ``--extra-index-url`` option to pip:

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

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

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

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

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

Expand Down

0 comments on commit 8b4e7bb

Please sign in to comment.