Skip to content

Commit 6b59568

Browse files
Fix build version number in packaging CI workflow
When locking the dependencies in the packaging workflow I originally set the version number of build to 0.1.0 instead of 0.10.0 due to a typo. This caused build failures in the packaging process. This patch changes the version number to be correct.
1 parent d1b5884 commit 6b59568

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/packaging.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
with:
1818
python-version: '3.10'
1919
cache: 'pip'
20-
- run: pip3 install build==0.1.0 setuptools==67.8.0 twine==4.0.2
20+
- run: pip3 install build==0.10.0 setuptools==68.0.00 twine==4.0.2
2121
name: Install Packaging Dependencies
2222
# TODO(boomanaiden154): Switch this install step over to using pipenv
2323
# once regenerating the lockfile has been fixed.

0 commit comments

Comments
 (0)