From 06adf717d8e5037f805b1790ba5a2acb92177609 Mon Sep 17 00:00:00 2001 From: David Vo Date: Sun, 27 Jul 2025 03:06:02 +1000 Subject: [PATCH] start: Remove version write https://github.com/wpilibsuite/allwpilib/pull/8003 --- subprojects/robotpy-wpilib/wpilib/_impl/start.py | 13 ------------- 1 file changed, 13 deletions(-) diff --git a/subprojects/robotpy-wpilib/wpilib/_impl/start.py b/subprojects/robotpy-wpilib/wpilib/_impl/start.py index 6c54020b..7cb442b1 100644 --- a/subprojects/robotpy-wpilib/wpilib/_impl/start.py +++ b/subprojects/robotpy-wpilib/wpilib/_impl/start.py @@ -225,19 +225,6 @@ def _start(self, robot_cls: wpilib.RobotBase) -> bool: # ) # return False - if not isSimulation: - robotpy_version = self.robotpy_version - if robotpy_version: - version_string = f"RobotPy {robotpy_version}" - else: - version_string = f"robotpy-wpilib {wpilib.__version__}" - - try: - with open("/tmp/frc_versions/FRC_Lib_Version.ini", "w") as fp: - fp.write(version_string) - except: - reportErrorInternal("Could not write FRC version file to disk") - try: self.robot.startCompetition() except KeyboardInterrupt: