Skip to content

Commit 914eda3

Browse files
committed
Update to 2024 library
1 parent 1d40bd0 commit 914eda3

File tree

5 files changed

+15
-23
lines changed

5 files changed

+15
-23
lines changed

.github/workflows/dist.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -11,14 +11,14 @@ on:
1111

1212
jobs:
1313
ci:
14-
uses: robotpy/build-actions/.github/workflows/package-ci.yml@v2023
14+
uses: robotpy/build-actions/.github/workflows/package-ci.yml@v2024
1515
with:
1616
enable_sphinx_check: false
17+
artifactory_repo_type: vendor
1718
secrets:
18-
SSH_USER: ${{ secrets.SSH_USER }}
19-
SSH_KEY: ${{ secrets.SSH_KEY }}
20-
SSH_PASSPHRASE: ${{ secrets.SSH_PASSPHRASE }}
2119
META_REPO_ACCESS_TOKEN: ${{ secrets.REPO_ACCESS_TOKEN }}
2220
RTD_TOKEN: ${{ secrets.RTD_TOKEN }}
2321
RTD_WEBHOOK: ${{ secrets.RTD_WEBHOOK }}
22+
WPI_ARTIFACTORY_USERNAME: ${{ secrets.WPI_ARTIFACTORY_USERNAME }}
23+
WPI_ARTIFACTORY_TOKEN: ${{ secrets.WPI_ARTIFACTORY_TOKEN }}
2424
PYPI_API_TOKEN: ${{ secrets.PYPI_PASSWORD }}

.github/workflows/scan.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,6 @@ jobs:
1010
if: github.repository_owner == 'robotpy'
1111
runs-on: ubuntu-latest
1212
steps:
13-
- uses: robotpy/build-actions/check-for-maven-update@v2023
13+
- uses: robotpy/build-actions/check-for-maven-update@v2024
1414
with:
1515
token: ${{ secrets.GITHUB_TOKEN }}

docs/conf.py

Lines changed: 1 addition & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -69,14 +69,7 @@
6969
pygments_style = "sphinx"
7070

7171
# -- Options for HTML output ----------------------------------------------
72-
73-
if not on_rtd: # only import and set the theme if we're building docs locally
74-
import sphinx_rtd_theme
75-
76-
html_theme = "sphinx_rtd_theme"
77-
html_theme_path = [sphinx_rtd_theme.get_html_theme_path()]
78-
else:
79-
html_theme = "default"
72+
html_theme = "sphinx_rtd_theme"
8073

8174
# Output file base name for HTML help builder.
8275
htmlhelp_basename = "sphinxdoc"

pyproject.toml

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -6,17 +6,17 @@ author_email = "robotpy@googlegroups.com"
66
url = "https://github.com/robotpy/robotpy-playingwithfusion"
77
license = "BSD-3-Clause"
88
install_requires = [
9-
"robotpy-wpiutil<2024.0.0,>=2023.2.1.0",
10-
"robotpy-wpimath<2024.0.0,>=2023.2.1.0",
11-
"wpilib<2024.0.0,>=2023.2.1.0",
9+
"robotpy-wpiutil<2025.0.0,>=2024.1.1.0",
10+
"robotpy-wpimath<2025.0.0,>=2024.1.1.0",
11+
"wpilib<2025.0.0,>=2024.1.1.0",
1212
]
1313

1414
[build-system]
1515
requires = [
16-
"robotpy-build<2024.0.0,>=2023.0.1",
17-
"robotpy-wpiutil<2024.0.0,>=2023.2.1.0",
18-
"robotpy-wpimath<2024.0.0,>=2023.2.1.0",
19-
"wpilib<2024.0.0,>=2023.2.1.0",
16+
"robotpy-build<2025.0.0,>=2024.0.0",
17+
"robotpy-wpiutil<2025.0.0,>=2024.1.1.0",
18+
"robotpy-wpimath<2025.0.0,>=2024.1.1.0",
19+
"wpilib<2025.0.0,>=2024.1.1.0",
2020
]
2121

2222
[tool.robotpy-build]
@@ -26,7 +26,7 @@ base_package = "playingwithfusion"
2626
artifact_id = "PlayingWithFusion-driver"
2727
group_id = "com.playingwithfusion.frc"
2828
repo_url = "https://www.playingwithfusion.com/frc/maven"
29-
version = "2023.01.17"
29+
version = "2024.01.10"
3030

3131
libs = ["PlayingWithFusionDriver"]
3232

@@ -38,7 +38,7 @@ depends = ["wpilib_core", "wpiutil"]
3838
artifact_id = "PlayingWithFusion-cpp"
3939
group_id = "com.playingwithfusion.frc"
4040
repo_url = "https://www.playingwithfusion.com/frc/maven"
41-
version = "2023.01.17"
41+
version = "2024.01.10"
4242

4343
libs = ["PlayingWithFusion"]
4444

tests/run_tests.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,6 @@
66
import subprocess
77

88
if __name__ == "__main__":
9-
109
root = abspath(dirname(__file__))
1110
os.chdir(root)
1211

0 commit comments

Comments
 (0)