Skip to content

Commit 23aa3be

Browse files
ci: use docker images with uv
1 parent 02d3122 commit 23aa3be

File tree

1 file changed

+16
-13
lines changed

1 file changed

+16
-13
lines changed

.circleci/config.yml

+16-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.2"
7+
default: "3.11"
88
publish-branch:
99
type: string
1010
default: "main"
@@ -21,9 +21,12 @@ 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: apt-get update -qq && apt-get install -y cmake
2730
- run:
2831
name: Get the base reference branch
2932
command: export BASE_BRANCH=$(base_branch)
@@ -33,10 +36,6 @@ jobs:
3336
- << pipeline.parameters.cache-prefix >>-{{ arch }}-{{ .Branch }}
3437
- << pipeline.parameters.cache-prefix >>-{{ arch }}-{{ .Environment.BASE_BRANCH }}
3538
- << pipeline.parameters.cache-prefix >>-{{ arch }}-
36-
- run:
37-
name: Install uv
38-
command: |
39-
curl -LsSf https://astral.sh/uv/install.sh | sh
4039
- run:
4140
name: Create venv and install Python dependencies
4241
command: |
@@ -53,7 +52,7 @@ jobs:
5352

5453
lint:
5554
docker:
56-
- image: cimg/python:<< pipeline.parameters.python-version >>
55+
- image: ghcr.io/astral-sh/uv:python<< pipeline.parameters.python-version >>-bookworm-slim
5756
steps:
5857
- attach_workspace:
5958
at: .
@@ -67,7 +66,7 @@ jobs:
6766
6867
tests:
6968
docker:
70-
- image: cimg/python:<< pipeline.parameters.python-version >>
69+
- image: ghcr.io/astral-sh/uv:python<< pipeline.parameters.python-version >>-bookworm-slim
7170
- image: cimg/postgres:11.15
7271
environment:
7372
POSTGRES_DB: postgres
@@ -77,6 +76,9 @@ jobs:
7776
steps:
7877
- attach_workspace:
7978
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/*
8082
- run:
8183
name: Run tests
8284
environment:
@@ -100,14 +102,15 @@ jobs:
100102

101103
build:
102104
docker:
103-
- image: cimg/python:<< pipeline.parameters.python-version >>
105+
- image: ghcr.io/astral-sh/uv:python<< pipeline.parameters.python-version >>-bookworm-slim
104106
steps:
105107
- attach_workspace:
106108
at: .
107109
- run:
108-
name: Install uv
110+
name: Install system dependencies
109111
command: |
110-
curl -LsSf https://astral.sh/uv/install.sh | sh
112+
apt-get update
113+
apt-get install -y cmake
111114
- run:
112115
name: Set the version
113116
command: |
@@ -152,15 +155,15 @@ jobs:
152155

153156
publish:
154157
docker:
155-
- image: cimg/python:<< pipeline.parameters.python-version >>
158+
- image: ghcr.io/astral-sh/uv:python<< pipeline.parameters.python-version >>-bookworm-slim
156159
steps:
157160
- attach_workspace:
158161
at: .
159162
- run:
160163
name: Publish on PyPI
161164
command: |
162165
# Install twine for publishing to PyPI
163-
.venv/bin/pip install twine
166+
uv pip install twine
164167
# Upload all distribution files
165168
.venv/bin/twine upload --username "${PYPI_USERNAME}" --password "${PYPI_PASSWORD}" dist/*
166169

0 commit comments

Comments
 (0)