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