Skip to content

Support Python 3.12 #11

Support Python 3.12

Support Python 3.12 #11

Workflow file for this run

name: 🚀 Deploy to PyPI
on:
push:
tags:
- 'v*'
jobs:
build:
runs-on: ubuntu-latest
steps:
<<<<<<< support-3.12

Check failure on line 13 in .github/workflows/deploy.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/deploy.yml

Invalid workflow file

You have an error in your yaml syntax on line 13
- uses: actions/checkout@v3
- name: Set up Python 3.11
uses: actions/setup-python@v4
=======
- uses: actions/checkout@v4
- name: Set up Python 3.10
uses: actions/setup-python@v5
>>>>>>> master
with:
python-version: "3.11"
- name: Build wheel and source tarball
run: |
pip install wheel
python setup.py sdist bdist_wheel
- name: Publish a Python distribution to PyPI
uses: pypa/[email protected]
with:
user: __token__
password: ${{ secrets.pypi_password }}