Skip to content

fix: add __future__ imports for Python 3.9 type hint compatibility #2

fix: add __future__ imports for Python 3.9 type hint compatibility

fix: add __future__ imports for Python 3.9 type hint compatibility #2

Workflow file for this run

name: release
on:
push:
tags: ["v*"]
jobs:
build-and-publish:
permissions:
id-token: write
contents: read
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with: { python-version: "3.11" }
- run: python -m pip install --upgrade build
- run: python -m build
- name: Publish to TestPyPI
uses: pypa/gh-action-pypi-publish@release/v1
# for TestPyPI:
with: { repository-url: https://test.pypi.org/legacy/ }