Skip to content

Allow setuptools compatible with Python 3.7 #8

Allow setuptools compatible with Python 3.7

Allow setuptools compatible with Python 3.7 #8

Workflow file for this run

name: Publish DBUtils on PyPI
on:
push:
tags:
- 'Release-*'
jobs:
publish:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: "3.11"
- name: Install build tool
run: python -m pip install build --user
- name: Build source tarball and wheel
run: python -m build
- name: Publish distribution to PyPI
uses: pypa/gh-action-pypi-publish@release/v1
with:
user: __token__
password: ${{ secrets.PYPI_TOKEN }}