Rename FRC to WPILib (#8637)

This commit is contained in:
Thad House
2026-03-13 23:05:55 -07:00
committed by GitHub
parent 6830c65a15
commit b2b111dc11
73 changed files with 134 additions and 141 deletions

View File

@@ -11,7 +11,7 @@ requires = [
[project]
name = "robotpy-wpiutil"
version = "0.0.0"
description = "Binary wrapper for FRC WPIUtil library"
description = "Binary wrapper for WPILib utilities library"
authors = [
{name = "RobotPy Development Team", email = "robotpy@googlegroups.com"},
]

View File

@@ -7,7 +7,7 @@ void cleanup_stack_trace_hook();
void setup_safethread_gil();
void cleanup_safethread_gil();
#ifndef __FRC_SYSTEMCORE__
#ifndef __FIRST_SYSTEMCORE__
namespace wpi::util::impl {
void ResetSendableRegistry();
@@ -38,4 +38,4 @@ SEMIWRAP_PYBIND11_MODULE(m) {
m.def("_setup_stack_trace_hook", &setup_stack_trace_hook);
m.add_object("_st_cleanup", cleanup);
}
}