소스 검색

Fix twine issue

Jelmer Vernooij 4 달 전
부모
커밋
341e050b3f
1개의 변경된 파일3개의 추가작업 그리고 1개의 파일을 삭제
  1. 3 1
      .github/workflows/python-distributions.yml

+ 3 - 1
.github/workflows/python-distributions.yml

@@ -129,7 +129,9 @@ jobs:
       - name: Install dependencies
         run: |
           python -m pip install --upgrade pip
-          pip install twine
+          # Upgrade packging to avoid a bug in twine.
+          # See https://github.com/pypa/twine/issues/1216
+          pip install "twine>=6.1.0" "packaging>=24.2"
       - name: Download sdist
         uses: actions/download-artifact@v4
         with: