-
Notifications
You must be signed in to change notification settings - Fork 1
323 lines (300 loc) · 9.08 KB
/
pythonpackage.yml
File metadata and controls
323 lines (300 loc) · 9.08 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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
name: Python package
on:
push:
branches-ignore:
- 'dependabot/**'
tags-ignore:
- '*.[0-9][ab][0-9]'
pull_request: {}
jobs:
PEP8:
name: Check with Ruff
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v5
- name: Set up Python
uses: actions/setup-python@v6
with:
python-version: '3.x'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install --upgrade ruff
- name: Lint with ruff
run: |
ruff check . --output-format github
PyLint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v5
- name: Set up Python
uses: actions/setup-python@v6
with:
python-version: '3.11'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install --upgrade -r CI_REQUIREMENTS.txt
pip install --upgrade "pylint >= 3.0.0"
- name: Install develop
run: |
pip install -e .
- name: Lint with PyLint
run: |
pylint threaded
MyPy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v5
- name: Set up Python
uses: actions/setup-python@v6
with:
python-version: '3.x'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install --upgrade -r CI_REQUIREMENTS.txt
pip install --upgrade "mypy>=1.7.0"
- name: Install develop
run: |
pip install -e .
- name: Lint with MyPy
run: |
mypy --strict threaded
Black:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v5
- name: Set up Python
uses: actions/setup-python@v6
with:
python-version: '3.x'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install --upgrade black regex
- name: Check code style with black
run: |
black --check threaded
Refurb:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v5
- name: Set up Python
uses: actions/setup-python@v6
with:
python-version: '3.x'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install --upgrade refurb
- name: Lint with refurb
run: |
refurb --format github threaded
TestScript:
needs: [PEP8, PyLint, MyPy, Black, Refurb] # isort is broken
runs-on: ${{ matrix.os }}
strategy:
max-parallel: 8
matrix:
os: [ubuntu-latest, windows-latest]
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"]
name: "Script based python ${{ matrix.python-version }} on ${{ matrix.os }}"
steps:
- uses: actions/checkout@v5
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v6
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip wheel
pip install --upgrade -r CI_REQUIREMENTS.txt
pip install --upgrade -r pytest_requirements.txt
- name: Install develop
run: |
pip install -e .
- name: Test with pytest
run: |
py.test --cov-report= --cov=threaded test
coverage report -m --fail-under 85
coverage xml
- name: Coveralls Parallel
uses: coverallsapp/github-action@v2
with:
flag-name: run-${{ matrix.python-version }}-${{ matrix.os }}
parallel: true
file: coverage.xml
UploadCoverage:
name: Upload coverage to Coveralls
needs: [ TestScript ]
if: ${{ always() }}
runs-on: ubuntu-latest
steps:
- name: Coveralls Finished
uses: coverallsapp/github-action@v2
with:
parallel-finished: true
TestLinux:
needs: [TestScript]
runs-on: ubuntu-latest
strategy:
max-parallel: 4
matrix:
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"]
name: "Cython based python ${{ matrix.python-version }} on linux"
steps:
- uses: actions/checkout@v5
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v6
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip wheel
pip install --upgrade -r CI_REQUIREMENTS.txt
pip install --upgrade Cython build
pip install --upgrade -r pytest_requirements.txt
- name: Build package and install
run: |
python -m build --no-isolation
pip install threaded --no-index -f dist
- name: Test with pytest
run: |
py.test
TestWindows:
needs: [TestScript]
runs-on: windows-latest
strategy:
max-parallel: 8
matrix:
WINDOWS:
- {ARCH: 'x86', WINDOWS: 'win32'}
- {ARCH: 'x64', WINDOWS: 'win64'}
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"]
name: "Cython based python ${{ matrix.python-version }} on ${{ matrix.WINDOWS.WINDOWS }}"
steps:
- uses: actions/checkout@v5
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v6
with:
python-version: ${{ matrix.python-version }}
architecture: ${{ matrix.WINDOWS.ARCH }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip wheel
pip install --upgrade -r CI_REQUIREMENTS.txt
pip install --upgrade Cython build
pip install --upgrade -r pytest_requirements.txt
- name: Build package and install
run: |
python -m build --no-isolation
pip install threaded --no-index -f dist
- name: Test with pytest
run: |
py.test
Build:
name: Build non-compiled sdist and bdist
needs: [TestScript]
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v5
with:
fetch-depth: 0 # need for setuptools_scm
- name: Set up Python
uses: actions/setup-python@v6
with:
python-version: '3.x'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install --upgrade twine build
- name: Build package
run: |
python -m build
- uses: actions/upload-artifact@v4
with:
path: dist/*
name: built-sdist
Metadata:
name: Validate metadata
runs-on: ubuntu-latest
needs: [ Build ]
steps:
- uses: actions/checkout@v5
- name: Set up Python
uses: actions/setup-python@v6
with:
python-version: '3.x'
cache: 'pip'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install --upgrade twine
- uses: actions/download-artifact@v4.3.0
with:
pattern: built-*
merge-multiple: true
path: dist
- name: Validate metadata
run: |
twine check dist/*
build_wheels:
name: Build wheels on ${{ matrix.os }}
needs: [ TestScript, TestLinux, TestWindows ]
# build only on push: heavy job
if: github.event_name == 'push'
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os:
- ubuntu-latest
- windows-latest
# - macos-latest
steps:
- uses: actions/checkout@v5
with:
fetch-depth: 0 # need for setuptools_scm
# Used to host cibuildwheel
- uses: actions/setup-python@v6
with:
python-version: "3.11"
- name: Set up QEMU
if: runner.os == 'Linux'
uses: docker/setup-qemu-action@v3
with:
platforms: all
- name: Build wheels
uses: pypa/cibuildwheel@v3.1.4
env:
# configure cibuildwheel to build native archs ('auto'), and some
# emulated ones
CIBW_ARCHS_LINUX: auto64 aarch64
CIBW_ARCHS_WINDOWS: auto64
CIBW_ARCHS_MACOS: x86_64 universal2 arm64
- uses: actions/upload-artifact@v4
with:
path: ./wheelhouse/*.whl
name: built-bdist
retention-days: 3
upload_pypi:
needs: [ Build, build_wheels, Metadata ]
# upload to PyPI on every tag
if: github.event_name == 'push' && github.ref_type == 'tag'
# alternatively, to publish when a GitHub Release is created, use the following rule:
# if: github.event_name == 'release' && github.event.action == 'published'
runs-on: ubuntu-latest
environment:
name: pypi
url: https://pypi.org/p/threaded
permissions:
id-token: write # IMPORTANT: this permission is mandatory for trusted publishing
steps:
- uses: actions/download-artifact@v4.3.0
with:
pattern: built-*
merge-multiple: true
path: dist
- name: Publish package distributions to PyPI
uses: pypa/gh-action-pypi-publish@release/v1