Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add python 3.10 support #21

Merged
merged 5 commits into from
Nov 6, 2021
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
actions: dry-run publish on push (no upload)
naufraghi authored Nov 6, 2021
commit 36b44e7d59bf36e4e2919c483e1d5bb711deccc3
4 changes: 4 additions & 0 deletions .github/workflows/pythonpublish.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
name: Upload Python Package

on:
push:
release:
types: [created]

@@ -23,6 +24,7 @@ jobs:
build-requirements: 'cython'
system-packages: 'patchelf'
- name: Publish wheels to PyPI
if: github.event_name == 'release'
env:
TWINE_USERNAME: ${{ secrets.PYPI_USERNAME }}
TWINE_PASSWORD: ${{ secrets.PYPI_PASSWORD }}
@@ -50,6 +52,7 @@ jobs:
run: |
just script/unix/ci-dist
- name: Publish wheels to PyPI
if: github.event_name == 'release'
env:
TWINE_USERNAME: ${{ secrets.PYPI_USERNAME }}
TWINE_PASSWORD: ${{ secrets.PYPI_PASSWORD }}
@@ -80,6 +83,7 @@ jobs:
$Env:Path = (Join-Path (Get-Location) "unzipped") + ";" + $Env:Path
just script/windows/ci-dist
- name: Publish wheels to PyPI
if: github.event_name == 'release'
env:
TWINE_USERNAME: ${{ secrets.PYPI_USERNAME }}
TWINE_PASSWORD: ${{ secrets.PYPI_PASSWORD }}