Skip to content

Commit caaf9e3

Browse files
authored
fix: install packaging>=24.2 with twine (#118)
there is a bug in twine that causes this error: https://github.com/developmentseed/eoapi-cdk/actions/runs/12952156141/job/36130167690 see pypa/twine#1216 for details
1 parent 2761646 commit caaf9e3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/distribute.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
name: python
2020
path: dist
2121

22-
- run: pip install twine
22+
- run: pip install "twine>=6.1.0" "packaging>=24.2"
2323

2424
- run: twine upload dist/*
2525
env:

0 commit comments

Comments
 (0)