Skip to content

Commit 655b2e2

Browse files
committed
Update for 2025
1 parent 30ac771 commit 655b2e2

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

setup.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ install_requires =
2727
pytest-reraise
2828
pint>=0.11.0
2929

30-
wpilib>=2024.1.0,<2025
30+
wpilib>=2025.0.0b1,<2026
3131
robotpy-cli~=2024.0
3232
setup_requires =
3333
setuptools_scm > 6

tests/run_tests.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,4 +9,6 @@
99
root = abspath(dirname(__file__))
1010
os.chdir(root)
1111

12-
subprocess.check_call([sys.executable, "-m", "pytest", "-vv"])
12+
# TODO: https://github.com/hgrecco/pint/issues/1969
13+
if sys.version_info < (3, 13):
14+
subprocess.check_call([sys.executable, "-m", "pytest", "-vv"])

0 commit comments

Comments
 (0)