-
Notifications
You must be signed in to change notification settings - Fork 0
79 lines (63 loc) · 1.75 KB
/
Copy pathwheels.yml
File metadata and controls
79 lines (63 loc) · 1.75 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
name: Wheels
on:
workflow_dispatch:
push:
tags:
- "v*"
jobs:
build-test:
name: Build and Publish
runs-on: ${{ matrix.os.instance }}
timeout-minutes: 15
permissions:
id-token: write
contents: write
strategy:
fail-fast: false
matrix:
os:
- category: windows
platform: x64
instance: windows-latest
- category: ubuntu
platform: x64
instance: ubuntu-latest
- category: macos
platform: x64
instance: macos-latest
python: ["3.9", "3.10", "3.11", "3.12", "3.13"]
exclude:
- os: { category: macos }
python: "3.9"
- os: { category: macos }
python: "3.10"
steps:
- name: Set Environment on macOS
uses: maxim-lobanov/setup-xamarin@v1
if: ${{ matrix.os.category == 'macos' }}
with:
mono-version: latest
- name: Checkout code
uses: actions/checkout@v2
- name: Setup .NET
uses: actions/setup-dotnet@v1
with:
dotnet-version: "8.0.x"
- name: Install uv and set the python version
uses: astral-sh/setup-uv@v5
with:
python-version: ${{ matrix.python }}
- name: Build
run: |
uv build --wheel
- name: Rename Linux wheel
run: |
uv run python -c "import glob,os;fn=glob.glob('./dist/*.whl')[0];newfn=fn.replace('linux_x86_64','manylinux_2_17_x86_64');os.rename(fn, newfn)"
- name: Publish package distributions to PyPI
run: |
uv publish
# Create release
- uses: ncipollo/release-action@v1
with:
makeLatest: true
allowUpdates: true