Skip to content

Commit f5a0e3e

Browse files
authored
Merge branch 'main' into log-incoming-requests
2 parents 5d080b7 + d3364b3 commit f5a0e3e

14 files changed

Lines changed: 895 additions & 397 deletions

File tree

.copier-answers.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Changes here will be overwritten by Copier
2-
_commit: 5.0.2
2+
_commit: 5.0.3
33
_src_path: https://github.com/DiamondLightSource/python-copier-template
44
author_email: [email protected]
55
author_name: Callum Forrester

.github/CONTRIBUTING.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,4 +24,4 @@ It is recommended that developers use a [vscode devcontainer](https://code.visua
2424

2525
This project was created using the [Diamond Light Source Copier Template](https://github.com/DiamondLightSource/python-copier-template) for Python projects.
2626

27-
For more information on common tasks like setting up a developer environment, running the tests, and setting a pre-commit hook, see the template's [How-to guides](https://diamondlightsource.github.io/python-copier-template/5.0.2/how-to.html).
27+
For more information on common tasks like setting up a developer environment, running the tests, and setting a pre-commit hook, see the template's [How-to guides](https://diamondlightsource.github.io/python-copier-template/5.0.3/how-to.html).

.github/workflows/_container.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@ jobs:
8888
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
8989

9090
- name: install helm
91-
uses: Azure/setup-helm@1a275c3b69536ee54be43f2070a358922e12c8d4 # v4
91+
uses: Azure/setup-helm@dda3372f752e03dde6b3237bc9431cdc2f7a02a2 # v5
9292
with:
9393
token: ${{ secrets.GITHUB_TOKEN }}
9494
id: install

Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,10 +31,10 @@ RUN uv add debugpy
3131

3232
# Sync the project without its dev dependencies
3333
RUN --mount=type=cache,target=/root/.cache/uv \
34-
uv sync --locked --no-editable --no-dev
34+
uv sync --locked --no-editable --no-dev --managed-python
3535

3636
# The runtime stage copies the built venv into a runtime container
37-
FROM ubuntu:noble AS runtime
37+
FROM ubuntu:resolute AS runtime
3838

3939
# Add apt-get system dependecies for runtime here if needed
4040
RUN DEBIAN_FRONTEND=noninteractive apt-get update && apt-get install -y --no-install-recommends \

README.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,9 @@
1010

1111
Lightweight bluesky-as-a-service wrapper application. Also usable as a library.
1212

13-
Source | <https://github.com/DiamondLightSource/blueapi>
13+
What | Where
1414
:---: | :---:
15+
Source | <https://github.com/DiamondLightSource/blueapi>
1516
PyPI | `pip install blueapi`
1617
Docker | `docker run ghcr.io/diamondlightsource/blueapi:latest`
1718
Documentation | <https://diamondlightsource.github.io/blueapi>

0 commit comments

Comments
 (0)