interpolars 0.1.1__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,214 @@
1
+ # This file is autogenerated by maturin v1.11.5
2
+ # To update, run
3
+ #
4
+ # maturin generate-ci github -m Cargo.toml
5
+ #
6
+ name: CI
7
+
8
+ on:
9
+ push:
10
+ branches:
11
+ - main
12
+ - master
13
+ tags:
14
+ - '*'
15
+ pull_request:
16
+ workflow_dispatch:
17
+
18
+ permissions:
19
+ contents: read
20
+
21
+ jobs:
22
+ linux:
23
+ runs-on: ${{ matrix.platform.runner }}
24
+ strategy:
25
+ matrix:
26
+ platform:
27
+ - runner: ubuntu-22.04
28
+ target: x86_64
29
+ - runner: ubuntu-22.04
30
+ target: x86
31
+ - runner: ubuntu-22.04
32
+ target: aarch64
33
+ - runner: ubuntu-22.04
34
+ target: armv7
35
+ - runner: ubuntu-22.04
36
+ target: ppc64le
37
+ steps:
38
+ - uses: actions/checkout@v6
39
+ - uses: actions/setup-python@v6
40
+ with:
41
+ python-version: 3.x
42
+ - name: Build wheels
43
+ uses: PyO3/maturin-action@v1
44
+ with:
45
+ target: ${{ matrix.platform.target }}
46
+ args: --release --out dist
47
+ sccache: ${{ !startsWith(github.ref, 'refs/tags/') }}
48
+ manylinux: auto
49
+ - name: Build free-threaded wheels
50
+ uses: PyO3/maturin-action@v1
51
+ with:
52
+ target: ${{ matrix.platform.target }}
53
+ args: --release --out dist -i python3.14t
54
+ sccache: ${{ !startsWith(github.ref, 'refs/tags/') }}
55
+ manylinux: auto
56
+ - name: Upload wheels
57
+ uses: actions/upload-artifact@v5
58
+ with:
59
+ name: wheels-linux-${{ matrix.platform.target }}
60
+ path: dist
61
+
62
+ musllinux:
63
+ runs-on: ${{ matrix.platform.runner }}
64
+ strategy:
65
+ matrix:
66
+ platform:
67
+ - runner: ubuntu-22.04
68
+ target: x86_64
69
+ - runner: ubuntu-22.04
70
+ target: x86
71
+ - runner: ubuntu-22.04
72
+ target: aarch64
73
+ - runner: ubuntu-22.04
74
+ target: armv7
75
+ steps:
76
+ - uses: actions/checkout@v6
77
+ - uses: actions/setup-python@v6
78
+ with:
79
+ python-version: 3.x
80
+ - name: Build wheels
81
+ uses: PyO3/maturin-action@v1
82
+ with:
83
+ target: ${{ matrix.platform.target }}
84
+ args: --release --out dist
85
+ sccache: ${{ !startsWith(github.ref, 'refs/tags/') }}
86
+ manylinux: musllinux_1_2
87
+ - name: Build free-threaded wheels
88
+ uses: PyO3/maturin-action@v1
89
+ with:
90
+ target: ${{ matrix.platform.target }}
91
+ args: --release --out dist -i python3.14t
92
+ sccache: ${{ !startsWith(github.ref, 'refs/tags/') }}
93
+ manylinux: musllinux_1_2
94
+ - name: Upload wheels
95
+ uses: actions/upload-artifact@v5
96
+ with:
97
+ name: wheels-musllinux-${{ matrix.platform.target }}
98
+ path: dist
99
+
100
+ windows:
101
+ runs-on: ${{ matrix.platform.runner }}
102
+ strategy:
103
+ matrix:
104
+ platform:
105
+ - runner: windows-latest
106
+ target: x64
107
+ python_arch: x64
108
+ - runner: windows-latest
109
+ target: x86
110
+ python_arch: x86
111
+ - runner: windows-11-arm
112
+ target: aarch64
113
+ python_arch: arm64
114
+ steps:
115
+ - uses: actions/checkout@v6
116
+ - uses: actions/setup-python@v6
117
+ with:
118
+ python-version: 3.13
119
+ architecture: ${{ matrix.platform.python_arch }}
120
+ - name: Build wheels
121
+ uses: PyO3/maturin-action@v1
122
+ with:
123
+ target: ${{ matrix.platform.target }}
124
+ args: --release --out dist
125
+ sccache: ${{ !startsWith(github.ref, 'refs/tags/') }}
126
+ - uses: actions/setup-python@v6
127
+ with:
128
+ python-version: 3.14t
129
+ architecture: ${{ matrix.platform.python_arch }}
130
+ - name: Build free-threaded wheels
131
+ uses: PyO3/maturin-action@v1
132
+ with:
133
+ target: ${{ matrix.platform.target }}
134
+ args: --release --out dist -i python3.14t
135
+ sccache: ${{ !startsWith(github.ref, 'refs/tags/') }}
136
+ - name: Upload wheels
137
+ uses: actions/upload-artifact@v5
138
+ with:
139
+ name: wheels-windows-${{ matrix.platform.target }}
140
+ path: dist
141
+
142
+ macos:
143
+ runs-on: ${{ matrix.platform.runner }}
144
+ strategy:
145
+ matrix:
146
+ platform:
147
+ - runner: macos-15-intel
148
+ target: x86_64
149
+ - runner: macos-latest
150
+ target: aarch64
151
+ steps:
152
+ - uses: actions/checkout@v6
153
+ - uses: actions/setup-python@v6
154
+ with:
155
+ python-version: 3.x
156
+ - name: Build wheels
157
+ uses: PyO3/maturin-action@v1
158
+ with:
159
+ target: ${{ matrix.platform.target }}
160
+ args: --release --out dist
161
+ sccache: ${{ !startsWith(github.ref, 'refs/tags/') }}
162
+ - name: Build free-threaded wheels
163
+ uses: PyO3/maturin-action@v1
164
+ with:
165
+ target: ${{ matrix.platform.target }}
166
+ args: --release --out dist -i python3.14t
167
+ sccache: ${{ !startsWith(github.ref, 'refs/tags/') }}
168
+ - name: Upload wheels
169
+ uses: actions/upload-artifact@v5
170
+ with:
171
+ name: wheels-macos-${{ matrix.platform.target }}
172
+ path: dist
173
+
174
+ sdist:
175
+ runs-on: ubuntu-latest
176
+ steps:
177
+ - uses: actions/checkout@v6
178
+ - name: Build sdist
179
+ uses: PyO3/maturin-action@v1
180
+ with:
181
+ command: sdist
182
+ args: --out dist
183
+ - name: Upload sdist
184
+ uses: actions/upload-artifact@v5
185
+ with:
186
+ name: wheels-sdist
187
+ path: dist
188
+
189
+ release:
190
+ name: Release
191
+ runs-on: ubuntu-latest
192
+ if: ${{ startsWith(github.ref, 'refs/tags/') || github.event_name == 'workflow_dispatch' }}
193
+ needs: [linux, musllinux, windows, macos, sdist]
194
+ environment:
195
+ name: pypi
196
+ permissions:
197
+ # Use to sign the release artifacts
198
+ id-token: write
199
+ # Used to upload release artifacts
200
+ contents: write
201
+ # Used to generate artifact attestation
202
+ attestations: write
203
+ steps:
204
+ - uses: actions/download-artifact@v6
205
+ - name: Generate artifact attestation
206
+ uses: actions/attest-build-provenance@v3
207
+ with:
208
+ subject-path: 'wheels-*/*'
209
+ - name: Install uv
210
+ if: ${{ startsWith(github.ref, 'refs/tags/') }}
211
+ uses: astral-sh/setup-uv@v7
212
+ - name: Publish to PyPI
213
+ if: ${{ startsWith(github.ref, 'refs/tags/') }}
214
+ run: uv publish 'wheels-*/*'
@@ -0,0 +1,15 @@
1
+ # Python-generated files
2
+ __pycache__/
3
+ *.py[oc]
4
+ build/
5
+ dist/
6
+ wheels/
7
+ *.egg-info
8
+
9
+ target/
10
+ src/**/*.so
11
+
12
+ .env
13
+
14
+ # Virtual environments
15
+ .venv
@@ -0,0 +1 @@
1
+ 3.12