From caaf9e3bd18593447a005eddf1d6bcef823b7d3b Mon Sep 17 00:00:00 2001 From: Henry Rodman Date: Fri, 24 Jan 2025 09:42:59 -0600 Subject: [PATCH] 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 https://github.com/pypa/twine/issues/1216 for details --- .github/workflows/distribute.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/distribute.yaml b/.github/workflows/distribute.yaml index 2e604e6..4775bc7 100644 --- a/.github/workflows/distribute.yaml +++ b/.github/workflows/distribute.yaml @@ -19,7 +19,7 @@ jobs: name: python path: dist - - run: pip install twine + - run: pip install "twine>=6.1.0" "packaging>=24.2" - run: twine upload dist/* env: