Skip to content

Commit 7485430

Browse files
ci: use docker images with uv
1 parent 55a9ebd commit 7485430

File tree

1 file changed

+19
-13
lines changed

1 file changed

+19
-13
lines changed

.circleci/config.yml

+19-13
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ version: 2.1
44
parameters:
55
python-version:
66
type: string
7-
default: "3.11.9"
7+
default: "3.11"
88
publish-branch:
99
type: string
1010
default: "main"
@@ -21,9 +21,14 @@ parameters:
2121
jobs:
2222
install:
2323
docker:
24-
- image: cimg/python:<< pipeline.parameters.python-version >>
24+
- image: ghcr.io/astral-sh/uv:python<< pipeline.parameters.python-version >>-bookworm-slim
2525
steps:
2626
- checkout
27+
- run:
28+
name: Install system dependencies
29+
command: |
30+
apt-get update
31+
apt-get install -y cmake
2732
- run:
2833
name: Get the base reference branch
2934
command: export BASE_BRANCH=$(base_branch)
@@ -33,10 +38,6 @@ jobs:
3338
- << pipeline.parameters.cache-prefix >>-{{ arch }}-{{ .Branch }}
3439
- << pipeline.parameters.cache-prefix >>-{{ arch }}-{{ .Environment.BASE_BRANCH }}
3540
- << pipeline.parameters.cache-prefix >>-{{ arch }}-
36-
- run:
37-
name: Install uv
38-
command: |
39-
curl -LsSf https://astral.sh/uv/install.sh | sh
4041
- run:
4142
name: Create venv and install Python dependencies
4243
command: |
@@ -53,7 +54,7 @@ jobs:
5354

5455
lint:
5556
docker:
56-
- image: cimg/python:<< pipeline.parameters.python-version >>
57+
- image: ghcr.io/astral-sh/uv:python<< pipeline.parameters.python-version >>-bookworm-slim
5758
steps:
5859
- attach_workspace:
5960
at: .
@@ -67,7 +68,7 @@ jobs:
6768
6869
tests:
6970
docker:
70-
- image: cimg/python:<< pipeline.parameters.python-version >>
71+
- image: ghcr.io/astral-sh/uv:python<< pipeline.parameters.python-version >>-bookworm-slim
7172
- image: cimg/postgres:11.15
7273
environment:
7374
POSTGRES_DB: postgres
@@ -77,6 +78,10 @@ jobs:
7778
steps:
7879
- attach_workspace:
7980
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/*
8085
- run:
8186
name: Run tests
8287
environment:
@@ -100,14 +105,15 @@ jobs:
100105

101106
build:
102107
docker:
103-
- image: cimg/python:<< pipeline.parameters.python-version >>
108+
- image: ghcr.io/astral-sh/uv:python<< pipeline.parameters.python-version >>-bookworm-slim
104109
steps:
105110
- attach_workspace:
106111
at: .
107112
- run:
108-
name: Install uv
113+
name: Install system dependencies
109114
command: |
110-
curl -LsSf https://astral.sh/uv/install.sh | sh
115+
apt-get update
116+
apt-get install -y cmake
111117
- run:
112118
name: Set the version
113119
command: |
@@ -152,15 +158,15 @@ jobs:
152158

153159
publish:
154160
docker:
155-
- image: cimg/python:<< pipeline.parameters.python-version >>
161+
- image: ghcr.io/astral-sh/uv:python<< pipeline.parameters.python-version >>-bookworm-slim
156162
steps:
157163
- attach_workspace:
158164
at: .
159165
- run:
160166
name: Publish on PyPI
161167
command: |
162168
# Install twine for publishing to PyPI
163-
.venv/bin/pip install twine
169+
uv pip install twine
164170
# Upload all distribution files
165171
.venv/bin/twine upload --username "${PYPI_USERNAME}" --password "${PYPI_PASSWORD}" dist/*
166172

0 commit comments

Comments
 (0)