tangled
alpha
login
or
join now
urschrei.eurosky.social
/
pyzotero
0
fork
atom
Pyzotero: a Python client for the Zotero API
pyzotero.readthedocs.io
zotero
0
fork
atom
overview
issues
pulls
pipelines
Update angled CI again
urschrei.eurosky.social
6 months ago
95a160a6
2147cdf7
0/1
ci.yml
failed
2s
+1
-6
1 changed file
expand all
collapse all
unified
split
.tangled
workflows
ci.yml
+1
-6
.tangled/workflows/ci.yml
reviewed
···
22
22
# Test with Python 3.9
23
23
- name: "Test with Python 3.9"
24
24
command: |
25
25
-
uv python install 3.9
26
25
uv sync --python 3.9 --all-extras --dev
27
26
uv run --python 3.9 pytest
28
27
29
28
# Test with Python 3.10
30
29
- name: "Test with Python 3.10"
31
30
command: |
32
32
-
uv python install 3.10
33
31
uv sync --python 3.10 --all-extras --dev
34
32
uv run --python 3.10 pytest
35
33
36
34
# Test with Python 3.11
37
35
- name: "Test with Python 3.11"
38
36
command: |
39
39
-
uv python install 3.11
40
37
uv sync --python 3.11 --all-extras --dev
41
38
uv run --python 3.11 pytest
42
39
43
40
# Test with Python 3.12
44
41
- name: "Test with Python 3.12"
45
42
command: |
46
46
-
uv python install 3.12
47
43
uv sync --python 3.12 --all-extras --dev
48
44
uv run --python 3.12 pytest
49
45
50
46
# Test with Python 3.13
51
47
- name: "Test with Python 3.13"
52
48
command: |
53
53
-
uv python install 3.13
54
49
uv sync --python 3.13 --all-extras --dev
55
50
uv run --python 3.13 pytest
56
51
57
52
# Build wheel to verify packaging
58
53
- name: "Build wheel"
59
59
-
command: "uv build --no-sources --wheel -o dist"
54
54
+
command: "uv build --python 3.13 --no-sources --wheel -o dist"