Skip to content

Commit f68d869

Browse files
authored
Merge pull request #58 from robotpy/update
Update to revlib 2024.2.1
2 parents 5dab978 + 7697bf3 commit f68d869

File tree

3 files changed

+12
-11
lines changed

3 files changed

+12
-11
lines changed

docs/api.rst

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
REV Libraries
22
==============
33

4-
These are not installed on the Robot by default. For installation instructions,
5-
see :ref:`robotpy-rev install docs <install_rev>`.
4+
These are not installed on the Robot by default, you need to add this project
5+
to your :doc:`pyproject.toml <frc:docs/software/python/pyproject_toml>`.
66

77
This documentation documents the various classes and methods that are
88
available to Python code, but don't discuss in detail how to actually

docs/conf.py

+3-2
Original file line numberDiff line numberDiff line change
@@ -44,10 +44,11 @@
4444

4545
intersphinx_mapping = {
4646
"robotpy": ("https://robotpy.readthedocs.io/en/%s/" % rtd_version, None),
47-
"wpilib": (
48-
"https://robotpy.readthedocs.io/projects/wpilib/en/%s/" % rtd_version,
47+
"mostrobotpy": (
48+
"https://robotpy.readthedocs.io/projects/robotpy/en/%s/" % rtd_version,
4949
None,
5050
),
51+
"frc": ("https://docs.wpilib.org/en/stable", None),
5152
}
5253

5354
# The version info for the project you're documenting, acts as replacement for

pyproject.toml

+7-7
Original file line numberDiff line numberDiff line change
@@ -6,17 +6,17 @@ author_email = "robotpy@googlegroups.com"
66
url = "https://github.com/robotpy/robotpy-rev"
77
license = "BSD-3-Clause"
88
install_requires = [
9-
"robotpy-wpiutil<2025.0.0,>=2024.1.1",
10-
"robotpy-wpimath<2025.0.0,>=2024.1.1",
9+
"robotpy-wpiutil<2025.0.0,>=2024.2.1",
10+
"robotpy-wpimath<2025.0.0,>=2024.2.1",
1111
"wpilib<2025.0.0,>=2024.1.1",
1212
]
1313

1414
[build-system]
1515
requires = [
1616
"robotpy-build<2025.0.0,~=2024.0.0",
17-
"robotpy-wpiutil<2025.0.0,>=2024.1.1",
18-
"robotpy-wpimath<2025.0.0,>=2024.1.1",
19-
"wpilib<2025.0.0,>=2024.1.1",
17+
"robotpy-wpiutil<2025.0.0,>=2024.2.1",
18+
"robotpy-wpimath<2025.0.0,>=2024.2.1",
19+
"wpilib<2025.0.0,>=2024.2.1",
2020
]
2121

2222
[tool.robotpy-build]
@@ -26,14 +26,14 @@ base_package = "rev"
2626
artifact_id = "REVLib-driver"
2727
group_id = "com.revrobotics.frc"
2828
repo_url = "https://maven.revrobotics.com"
29-
version = "2024.2.0"
29+
version = "2024.2.1"
3030
libs = ["REVLibDriver"]
3131

3232
[tool.robotpy-build.static_libs."revlib".maven_lib_download]
3333
artifact_id = "REVLib-cpp"
3434
group_id = "com.revrobotics.frc"
3535
repo_url = "https://maven.revrobotics.com"
36-
version = "2024.2.0"
36+
version = "2024.2.1"
3737
libs = ["REVLib"]
3838

3939
[tool.robotpy-build.wrappers."rev"]

0 commit comments

Comments
 (0)