Skip to content

Commit c2e3826

Browse files
authored
Merge pull request #235 from robotpy/2025-dev
Update for 2025
2 parents 30ac771 + 8ecf688 commit c2e3826

File tree

3 files changed

+5
-3
lines changed

3 files changed

+5
-3
lines changed

.github/workflows/dist.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ on:
1111

1212
jobs:
1313
ci:
14-
uses: robotpy/build-actions/.github/workflows/package-pure.yml@v2024
14+
uses: robotpy/build-actions/.github/workflows/package-pure.yml@v2025
1515
with:
1616
enable_sphinx_check: false
1717
secrets:

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)