Skip to content

Commit 4b4353b

Browse files
committed
bump wpiformat
1 parent 56bbae1 commit 4b4353b

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

.github/workflows/lint-format.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ jobs:
3535
with:
3636
python-version: 3.13
3737
- name: Install wpiformat
38-
run: pip3 install wpiformat==2025.33
38+
run: pip3 install wpiformat==2025.72
3939
- name: Run
4040
run: wpiformat
4141
- name: Check output
File renamed without changes.
File renamed without changes.

CMakeLists.txt

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -50,20 +50,20 @@ set(OPENCV_TYPE "")
5050

5151
# Download opencv, and save the path
5252
include(FetchContent)
53-
fetchcontent_declare(
53+
FetchContent_Declare(
5454
opencv_lib
5555
URL
5656
https://frcmaven.wpi.edu/artifactory/release/edu/wpi/first/thirdparty/${OPENCV_YEAR}/opencv/opencv-cpp/${OPENCV_VERSION}/opencv-cpp-${OPENCV_VERSION}-${OPENCV_ARCH}${OPENCV_TYPE}.zip
5757
)
58-
fetchcontent_makeavailable(opencv_lib)
58+
FetchContent_MakeAvailable(opencv_lib)
5959

6060
# download OpenCV headers
61-
fetchcontent_declare(
61+
FetchContent_Declare(
6262
opencv_header
6363
URL
6464
https://frcmaven.wpi.edu/artifactory/release/edu/wpi/first/thirdparty/${OPENCV_YEAR}/opencv/opencv-cpp/${OPENCV_VERSION}/opencv-cpp-${OPENCV_VERSION}-headers.zip
6565
)
66-
fetchcontent_makeavailable(opencv_header)
66+
FetchContent_MakeAvailable(opencv_header)
6767

6868
# This probably doesn't work great with shared libraries, but I don't care about those right now
6969
file(

0 commit comments

Comments
 (0)