Skip to content

Bump tqdm from 4.62.3 to 4.66.3 #105

Bump tqdm from 4.62.3 to 4.66.3

Bump tqdm from 4.62.3 to 4.66.3 #105

Workflow file for this run

name: Publish Python 🐍 distributions πŸ“¦ to PyPI
# Publish to Test PyPI in case of pushing into the master
# Publish to PyPI in case of releasing
on:
push:
jobs:
build-n-publish:
name: Build and publish Python 🐍 distributions πŸ“¦ to PyPI
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Python 3.8
uses: actions/setup-python@v2
with:
python-version: 3.8
- name: Install pypa/build
run: |
python -m pip install build --user
- name: Build a binary wheel and a source tarball
run: |
python -m build --sdist --wheel --outdir dist/ .
# - name: Publish distribution πŸ“¦ to Test PyPI
# if: github.ref == 'refs/heads/master'
# uses: pypa/gh-action-pypi-publish@master
# with:
# password: ${{ secrets.TEST_PYPI_API_TOKEN }}
# repository_url: https://test.pypi.org/legacy/
- name: Publish distribution πŸ“¦ to PyPI
if: startsWith(github.ref, 'refs/tags')
uses: pypa/gh-action-pypi-publish@master
with:
password: ${{ secrets.PYPI_API_TOKEN }}