Skip to content

Commit 73e2e8f

Browse files
committed
copier update
1 parent cf28c0f commit 73e2e8f

File tree

16 files changed

+356
-272
lines changed

16 files changed

+356
-272
lines changed

.copier-answers.yml

Lines changed: 2 additions & 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.9
2+
_commit: v0.0.13
33
_src_path: gh:LabAutomationAndScreening/copier-base-template.git
44
description: Copier template for creating Python libraries and executables
55
python_ci_versions:
@@ -9,6 +9,7 @@ python_version: 3.12.7
99
repo_name: copier-python-package-template
1010
repo_org_name: LabAutomationAndScreening
1111
ssh_port_number: 55874
12+
template_uses_javascript: false
1213
template_uses_pulumi: false
1314
template_uses_python: true
1415

.devcontainer/devcontainer.json

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
"features": {
66
"ghcr.io/devcontainers/features/aws-cli:1": {
77
// view latest version https://raw.githubusercontent.com/aws/aws-cli/v2/CHANGELOG.rst
8-
"version": "2.19.3"
8+
"version": "2.24.24"
99
},
1010
"ghcr.io/devcontainers/features/python:1": {
1111
// https://github.com/devcontainers/features/tree/main/src/python
@@ -31,6 +31,8 @@
3131
"ms-vscode-remote.remote-containers@0.383.0",
3232
"charliermarsh.ruff@2024.54.0",
3333

34+
35+
3436
// Misc file formats
3537
"bierner.markdown-mermaid@1.25.0",
3638
"samuelcolvin.jinjahtml@0.20.0",

.devcontainer/install-ci-tooling.sh

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@
22
# can pass in the full major.minor.patch version of python as an optional argument
33
set -ex
44

5+
6+
57
curl -LsSf https://astral.sh/uv/0.6.6/install.sh | sh
68
uv --version
79
# TODO: add uv autocompletion to the shell https://docs.astral.sh/uv/getting-started/installation/#shell-autocompletion

.github/actions/install_deps_uv/action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ runs:
5656

5757
- name: OIDC Auth for CodeArtifact
5858
if: ${{ inputs.code-artifact-auth-role-name != 'no-code-artifact' }}
59-
uses: aws-actions/configure-aws-credentials@v4.0.2
59+
uses: aws-actions/configure-aws-credentials@v4.1.0
6060
with:
6161
role-to-assume: arn:aws:iam::${{ inputs.code-artifact-auth-role-account-id }}:role/${{ inputs.code-artifact-auth-role-name }}
6262
aws-region: ${{ inputs.code-artifact-auth-region }}

.github/workflows/ci.yaml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,8 @@ jobs:
2929
- name: Checkout code
3030
uses: actions/checkout@v4.2.2
3131

32+
33+
3234
- name: Install latest versions of python packages
3335
uses: ./.github/actions/install_deps_uv
3436
with:
@@ -42,7 +44,7 @@ jobs:
4244
timeout-minutes: 30 # this is the amount of time this action will wait to attempt to acquire the mutex lock before failing, e.g. if other jobs are queued up in front of it
4345

4446
- name: Cache Pre-commit hooks
45-
uses: actions/cache@v4.2.0
47+
uses: actions/cache@v4.2.2
4648
env:
4749
cache-name: cache-pre-commit-hooks
4850
with:
@@ -130,7 +132,7 @@ jobs:
130132
timeout-minutes: 30 # this is the amount of time this action will wait to attempt to acquire the mutex lock before failing, e.g. if other jobs are queued up in front of it
131133

132134
- name: Cache Pre-commit hooks
133-
uses: actions/cache@v4.2.0
135+
uses: actions/cache@v4.2.2
134136
env:
135137
cache-name: cache-pre-commit-hooks
136138
with:

0 commit comments

Comments
 (0)