Skip to content

Commit b5b4cdd

Browse files
committed
Coiper
1 parent 77eaccd commit b5b4cdd

File tree

7 files changed

+7
-7
lines changed

7 files changed

+7
-7
lines changed

.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: v0.0.41-29-gd592712
2+
_commit: v0.0.42
33
_src_path: gh:LabAutomationAndScreening/copier-base-template.git
44
description: Copier template for creating Python libraries and executables
55
python_ci_versions:

.devcontainer/devcontainer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,5 +59,5 @@
5959
"initializeCommand": "sh .devcontainer/initialize-command.sh",
6060
"onCreateCommand": "sh .devcontainer/on-create-command.sh",
6161
"postStartCommand": "sh .devcontainer/post-start-command.sh"
62-
// Devcontainer context hash (do not manually edit this, it's managed by a pre-commit hook): 5e3a0577 # spellchecker:disable-line
62+
// Devcontainer context hash (do not manually edit this, it's managed by a pre-commit hook): e9b90543 # spellchecker:disable-line
6363
}

.devcontainer/install-ci-tooling.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ set -ex
66

77

88

9-
curl -LsSf https://astral.sh/uv/0.6.17/install.sh | sh
9+
curl -LsSf https://astral.sh/uv/0.7.3/install.sh | sh
1010
uv --version
1111
# TODO: add uv autocompletion to the shell https://docs.astral.sh/uv/getting-started/installation/#shell-autocompletion
1212

.github/actions/install_deps_uv/install-ci-tooling.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
Set-StrictMode -Version Latest
44
$ErrorActionPreference = "Stop"
55

6-
irm https://astral.sh/uv/0.6.17/install.ps1 | iex
6+
irm https://astral.sh/uv/0.7.3/install.ps1 | iex
77

88
# Add uv to path (in github runner)
99
$env:Path = "C:\Users\runneradmin\.local\bin;$env:Path"

.github/workflows/ci.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ env:
1212

1313
permissions:
1414
id-token: write
15-
contents: write # needed for mutex
15+
contents: write # needed for mutex, and updating dependabot branches
1616
statuses: write # needed for updating status on Dependabot PRs
1717

1818
jobs:

extensions/context.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ class ContextUpdater(ContextHook):
1010

1111
@override
1212
def hook(self, context: dict[Any, Any]) -> dict[Any, Any]:
13-
context["uv_version"] = "0.6.17"
13+
context["uv_version"] = "0.7.3"
1414
context["pnpm_version"] = "10.10.0"
1515
context["pre_commit_version"] = "4.2.0"
1616
context["pyright_version"] = "1.1.400"

template/.github/actions/install_deps_uv/install-ci-tooling.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
Set-StrictMode -Version Latest
44
$ErrorActionPreference = "Stop"
55

6-
irm https://astral.sh/uv/0.6.17/install.ps1 | iex
6+
irm https://astral.sh/uv/0.7.3/install.ps1 | iex
77

88
# Add uv to path (in github runner)
99
$env:Path = "C:\Users\runneradmin\.local\bin;$env:Path"

0 commit comments

Comments
 (0)