Skip to content

Commit

Permalink
wip
Browse files Browse the repository at this point in the history
  • Loading branch information
mullr committed Sep 5, 2024
1 parent de4ac39 commit a5e8e41
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 7 deletions.
15 changes: 9 additions & 6 deletions .github/workflows/python-sdk.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# This file was autogenerated by maturin v1.7.1, but then customized

name: CI
name: Python SDK

on:
push:
Expand Down Expand Up @@ -40,8 +40,9 @@ jobs:
- name: Upload wheels
uses: actions/upload-artifact@v4
with:
name: wheels-linux-${{ matrix.platform.target }}
name: *.whl
path: dist
if-no-files-found: error

macos:
runs-on: ${{ matrix.platform.runner }}
Expand All @@ -63,12 +64,13 @@ jobs:
working-directory: client-libraries/python/auxon-sdk
target: ${{ matrix.platform.target }}
args: --release --out dist
manylinux: 2_28
- name: Upload wheels
uses: actions/upload-artifact@v4
with:
name: wheels-macos-${{ matrix.platform.target }}
name: *.whl
path: dist
manylinux: 2_28
if-no-files-found: error

sdist:
runs-on: ubuntu-latest
Expand All @@ -80,12 +82,13 @@ jobs:
working-directory: client-libraries/python/auxon-sdk
command: sdist
args: --out dist
manylinux: 2_28
- name: Upload sdist
uses: actions/upload-artifact@v4
with:
name: wheels-sdist
name: *.tar.gz
path: dist
manylinux: 2_28
if-no-files-found: error

release:
name: Release
Expand Down
2 changes: 1 addition & 1 deletion client-libraries/python/auxon-sdk/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "auxon-sdk-python"
version = "0.1.0"
version = "2.2.0"
edition = "2021"

[lib]
Expand Down

0 comments on commit a5e8e41

Please sign in to comment.