Skip to content

Bump aiohttp from 3.13.3 to 3.13.4 #594

Bump aiohttp from 3.13.3 to 3.13.4

Bump aiohttp from 3.13.3 to 3.13.4 #594

Workflow file for this run

name: PyPI
on: push
jobs:
build-n-publish:
name: Build and publish Python 🐍 distributions 📦 to PyPI and TestPyPI
runs-on: "ubuntu-latest"
timeout-minutes: 120
steps:
- uses: actions/checkout@v4
- name: "Set up Python 3.12"
uses: actions/setup-python@v5
with:
python-version: "3.12"
- name: "Install build tools"
run: "python -m pip install --upgrade pip build twine"
- name: "Build package"
run: "python -m build"
- name: "Check long_description"
run: "python -m twine check dist/*"
- name: Publish distribution 📦 to PyPI
if: github.event_name == 'push' && startsWith(github.event.ref, 'refs/tags')
uses: pypa/gh-action-pypi-publish@master
with:
user: __token__
password: ${{ secrets.pypiapitoken }}