Переглянути джерело

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 }}