소스 검색

build(ci): update dependencies for PyPI package publishing

- Upgrade twine and install additional dependencies
- Add id, keyring, packaging, readme-renderer, requests, requests-toolbelt,  rfc3986, rich, and urllib3 to ensure successful package publishing
myhloli 8 달 전
부모
커밋
c545a94e95
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      .github/workflows/python-package.yml

+ 1 - 1
.github/workflows/python-package.yml

@@ -122,6 +122,6 @@ jobs:
 
       - name: Publish distribution to PyPI
         run: |
-          pip install twine
+          pip install -U twine id keyring packaging readme-renderer requests requests-toolbelt rfc3986 rich urllib3
           twine check dist/*
           twine upload dist/* -u __token__ -p ${{ secrets.PYPI_TOKEN }}