@@ -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
77
78
steps :
78
79
- attach_workspace :
79
80
at : .
81
+ - run :
82
+ name : Install system dependencies
83
+ command : |
84
+ apt-get update -qq && apt-get install -y --no-install-recommends libmagic1 && rm -rf /var/lib/apt/lists/*
80
85
- run :
81
86
name : Run tests
82
87
environment :
@@ -100,14 +105,15 @@ jobs:
100
105
101
106
build :
102
107
docker :
103
- - image : cimg/python: << pipeline.parameters.python-version >>
108
+ - image : ghcr.io/astral-sh/uv:python << pipeline.parameters.python-version >>-bookworm-slim
104
109
steps :
105
110
- attach_workspace :
106
111
at : .
107
112
- run :
108
- name : Install uv
113
+ name : Install system dependencies
109
114
command : |
110
- curl -LsSf https://astral.sh/uv/install.sh | sh
115
+ apt-get update
116
+ apt-get install -y cmake
111
117
- run :
112
118
name : Set the version
113
119
command : |
@@ -152,15 +158,15 @@ jobs:
152
158
153
159
publish :
154
160
docker :
155
- - image : cimg/python: << pipeline.parameters.python-version >>
161
+ - image : ghcr.io/astral-sh/uv:python << pipeline.parameters.python-version >>-bookworm-slim
156
162
steps :
157
163
- attach_workspace :
158
164
at : .
159
165
- run :
160
166
name : Publish on PyPI
161
167
command : |
162
168
# Install twine for publishing to PyPI
163
- .venv/bin/ pip install twine
169
+ uv pip install twine
164
170
# Upload all distribution files
165
171
.venv/bin/twine upload --username "${PYPI_USERNAME}" --password "${PYPI_PASSWORD}" dist/*
166
172
0 commit comments