@@ -4,7 +4,7 @@ version: 2.1
4
4
parameters :
5
5
python-version :
6
6
type : string
7
- default : " 3.11.9 "
7
+ default : " 3.11"
8
8
publish-branch :
9
9
type : string
10
10
default : " main"
@@ -21,9 +21,14 @@ parameters:
21
21
jobs :
22
22
install :
23
23
docker :
24
- - image : cimg/python: << pipeline.parameters.python-version >>
24
+ - image : ghcr.io/astral-sh/uv:python << pipeline.parameters.python-version >>-bookworm-slim
25
25
steps :
26
26
- checkout
27
+ - run :
28
+ name : Install system dependencies
29
+ command : |
30
+ apt-get update
31
+ apt-get install -y cmake
27
32
- run :
28
33
name : Get the base reference branch
29
34
command : export BASE_BRANCH=$(base_branch)
33
38
- << pipeline.parameters.cache-prefix >>-{{ arch }}-{{ .Branch }}
34
39
- << pipeline.parameters.cache-prefix >>-{{ arch }}-{{ .Environment.BASE_BRANCH }}
35
40
- << pipeline.parameters.cache-prefix >>-{{ arch }}-
36
- - run :
37
- name : Install uv
38
- command : |
39
- curl -LsSf https://astral.sh/uv/install.sh | sh
40
41
- run :
41
42
name : Create venv and install Python dependencies
42
43
command : |
53
54
54
55
lint :
55
56
docker :
56
- - image : cimg/python: << pipeline.parameters.python-version >>
57
+ - image : ghcr.io/astral-sh/uv:python << pipeline.parameters.python-version >>-bookworm-slim
57
58
steps :
58
59
- attach_workspace :
59
60
at : .
67
68
68
69
tests :
69
70
docker :
70
- - image : cimg/python: << pipeline.parameters.python-version >>
71
+ - image : ghcr.io/astral-sh/uv:python << pipeline.parameters.python-version >>-bookworm-slim
71
72
- image : cimg/postgres:11.15
72
73
environment :
73
74
POSTGRES_DB : postgres
@@ -100,14 +101,15 @@ jobs:
100
101
101
102
build :
102
103
docker :
103
- - image : cimg/python: << pipeline.parameters.python-version >>
104
+ - image : ghcr.io/astral-sh/uv:python << pipeline.parameters.python-version >>-bookworm-slim
104
105
steps :
105
106
- attach_workspace :
106
107
at : .
107
108
- run :
108
- name : Install uv
109
+ name : Install system dependencies
109
110
command : |
110
- curl -LsSf https://astral.sh/uv/install.sh | sh
111
+ apt-get update
112
+ apt-get install -y cmake
111
113
- run :
112
114
name : Set the version
113
115
command : |
@@ -152,15 +154,15 @@ jobs:
152
154
153
155
publish :
154
156
docker :
155
- - image : cimg/python: << pipeline.parameters.python-version >>
157
+ - image : ghcr.io/astral-sh/uv:python << pipeline.parameters.python-version >>-bookworm-slim
156
158
steps :
157
159
- attach_workspace :
158
160
at : .
159
161
- run :
160
162
name : Publish on PyPI
161
163
command : |
162
164
# Install twine for publishing to PyPI
163
- .venv/bin/ pip install twine
165
+ uv pip install twine
164
166
# Upload all distribution files
165
167
.venv/bin/twine upload --username "${PYPI_USERNAME}" --password "${PYPI_PASSWORD}" dist/*
166
168
0 commit comments