Skip to content

Commit 8480f6e

Browse files
committedOct 20, 2024
Update for 2025 beta
1 parent 9efd017 commit 8480f6e

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed
 

‎.github/workflows/dist.yml

+4-4
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:
@@ -21,10 +21,10 @@ jobs:
2121
check-mypy:
2222
runs-on: ubuntu-latest
2323
steps:
24-
- uses: actions/checkout@v3
25-
- uses: actions/setup-python@v4
24+
- uses: actions/checkout@v4
25+
- uses: actions/setup-python@v5
2626
with:
27-
python-version: "3.12"
27+
python-version: "3.13"
2828
- name: Install requirements
2929
run: |
3030
pip --disable-pip-version-check install mypy setuptools wheel setuptools_scm

‎setup.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -13,10 +13,10 @@
1313
package_data={"commands2": ["py.typed"]},
1414
packages=["commands2"],
1515
install_requires=[
16-
"wpilib<2025,>=2024.3.1",
16+
"wpilib<2026,>=2025.0.0b1",
1717
"typing_extensions>=4.1.0,<5",
1818
],
1919
license="BSD-3-Clause",
20-
python_requires=">=3.8",
20+
python_requires=">=3.9",
2121
include_package_data=True,
2222
)

0 commit comments

Comments
 (0)
Failed to load comments.