Skip to content

Bump urllib3 from 2.6.3 to 2.7.0 in the pip group across 1 directory … #462

Bump urllib3 from 2.6.3 to 2.7.0 in the pip group across 1 directory …

Bump urllib3 from 2.6.3 to 2.7.0 in the pip group across 1 directory … #462

Workflow file for this run

name: Publish Python 🐍 distributions 📦 to PyPI and TestPyPI
on: push
jobs:
build-n-publish:
name: Build and publish Python 🐍 distributions 📦 to PyPI and TestPyPI
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@master
- name: Set up Python 3.14 🐍🐍🐍
uses: actions/setup-python@v1
with:
python-version: 3.14
- name: Install poetry
run: |
python -m pip install poetry
- name: Install dependencies through Poetry
run: |
python -m poetry install --with dev
- name: Publish distribution 📦 to PyPI
if: startsWith(github.event.ref, 'refs/tags')
env:
PYPI_TOKEN: ${{ secrets.pypi_deploy }}
run: |
poetry config pypi-token.pypi $PYPI_TOKEN
poetry publish --build