From 655b2e23d87cf0da43affd934e8965ed8e349087 Mon Sep 17 00:00:00 2001 From: Dustin Spicuzza Date: Sat, 19 Oct 2024 22:53:53 -0400 Subject: [PATCH] Update for 2025 --- setup.cfg | 2 +- tests/run_tests.py | 4 +++- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/setup.cfg b/setup.cfg index c591ab6..1b82c33 100644 --- a/setup.cfg +++ b/setup.cfg @@ -27,7 +27,7 @@ install_requires = pytest-reraise pint>=0.11.0 - wpilib>=2024.1.0,<2025 + wpilib>=2025.0.0b1,<2026 robotpy-cli~=2024.0 setup_requires = setuptools_scm > 6 diff --git a/tests/run_tests.py b/tests/run_tests.py index 930a370..ae47c1b 100755 --- a/tests/run_tests.py +++ b/tests/run_tests.py @@ -9,4 +9,6 @@ root = abspath(dirname(__file__)) os.chdir(root) - subprocess.check_call([sys.executable, "-m", "pytest", "-vv"]) + # TODO: https://github.com/hgrecco/pint/issues/1969 + if sys.version_info < (3, 13): + subprocess.check_call([sys.executable, "-m", "pytest", "-vv"])