Skip to content

Commit afe836d

Browse files
authored
Merge branch 'master' into deprecate-executors-for-v2.0
2 parents 41db8dc + aeb7bca commit afe836d

File tree

3 files changed

+9
-3
lines changed

3 files changed

+9
-3
lines changed

.github/workflows/ci.yml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,11 @@ jobs:
8686
./kind create cluster --config=tests/cluster-config.yaml
8787
./kind export kubeconfig
8888
89-
docker build -f tests/Dockerfile -t scalableminds/cluster-tools:latest .
89+
docker build \
90+
--build-arg PYTHON_VERSION=${{ matrix.python-version }} \
91+
-f tests/Dockerfile \
92+
-t scalableminds/cluster-tools:latest \
93+
.
9094
./kind load docker-image scalableminds/cluster-tools:latest
9195
9296
- name: Install dependencies (without docker)

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
[![Supported Python Versions](https://img.shields.io/pypi/pyversions/webknossos.svg)](https://pypi.python.org/pypi/webknossos)
44
[![Build Status](https://img.shields.io/github/actions/workflow/status/scalableminds/webknossos-libs/.github/workflows/ci.yml?branch=master)](https://github.com/scalableminds/webknossos-libs/actions?query=workflow%3A%22CI%22)
55
[![Documentation](https://img.shields.io/badge/docs-passing-brightgreen.svg)](https://docs.webknossos.org/webknossos-py/index.html)
6-
[![Package Manager](https://img.shields.io/pypi/pyversions/uv.svg)](https://pypi.python.org/pypi/uv)
6+
[![Package Manager](https://img.shields.io/endpoint?url=https://raw.githubusercontent.com/astral-sh/uv/main/assets/badge/v0.json)](https://github.com/astral-sh/uv)
77
[![Code Style](https://img.shields.io/endpoint?url=https://raw.githubusercontent.com/astral-sh/ruff/main/assets/badge/v2.json)](https://docs.astral.sh/ruff/)
88

99
<img align="right" src="https://static.webknossos.org/logos/webknossos-icon-only.svg" alt="WEBKNOSSOS Logo" width="100" height="100"/>

cluster_tools/tests/Dockerfile

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,6 @@
1-
FROM python:3.11
1+
ARG PYTHON_VERSION="3.11"
2+
3+
FROM python:${PYTHON_VERSION}
24

35
COPY --from=ghcr.io/astral-sh/uv:0.5.22 /uv /bin/uv
46

0 commit comments

Comments
 (0)