Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion .copier-answers.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Changes here will be overwritten by Copier
_commit: v0.0.9
_commit: v0.0.13
_src_path: gh:LabAutomationAndScreening/copier-base-template.git
description: Copier template for creating Python libraries and executables
python_ci_versions:
Expand All @@ -9,6 +9,7 @@ python_version: 3.12.7
repo_name: copier-python-package-template
repo_org_name: LabAutomationAndScreening
ssh_port_number: 55874
template_uses_javascript: false
template_uses_pulumi: false
template_uses_python: true

4 changes: 3 additions & 1 deletion .devcontainer/devcontainer.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
"features": {
"ghcr.io/devcontainers/features/aws-cli:1": {
// view latest version https://raw.githubusercontent.com/aws/aws-cli/v2/CHANGELOG.rst
"version": "2.19.3"
"version": "2.24.24"
},
"ghcr.io/devcontainers/features/python:1": {
// https://github.com/devcontainers/features/tree/main/src/python
Expand All @@ -31,6 +31,8 @@
"ms-vscode-remote.remote-containers@0.383.0",
"charliermarsh.ruff@2024.54.0",



// Misc file formats
"bierner.markdown-mermaid@1.25.0",
"samuelcolvin.jinjahtml@0.20.0",
Expand Down
2 changes: 2 additions & 0 deletions .devcontainer/install-ci-tooling.sh
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@
# can pass in the full major.minor.patch version of python as an optional argument
set -ex



curl -LsSf https://astral.sh/uv/0.6.6/install.sh | sh
uv --version
# TODO: add uv autocompletion to the shell https://docs.astral.sh/uv/getting-started/installation/#shell-autocompletion
Expand Down
2 changes: 1 addition & 1 deletion .github/actions/install_deps_uv/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ runs:

- name: OIDC Auth for CodeArtifact
if: ${{ inputs.code-artifact-auth-role-name != 'no-code-artifact' }}
uses: aws-actions/configure-aws-credentials@v4.0.2
uses: aws-actions/configure-aws-credentials@v4.1.0
with:
role-to-assume: arn:aws:iam::${{ inputs.code-artifact-auth-role-account-id }}:role/${{ inputs.code-artifact-auth-role-name }}
aws-region: ${{ inputs.code-artifact-auth-region }}
Expand Down
6 changes: 4 additions & 2 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,8 @@ jobs:
- name: Checkout code
uses: actions/checkout@v4.2.2



- name: Install latest versions of python packages
uses: ./.github/actions/install_deps_uv
with:
Expand All @@ -42,7 +44,7 @@ jobs:
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

- name: Cache Pre-commit hooks
uses: actions/cache@v4.2.0
uses: actions/cache@v4.2.2
env:
cache-name: cache-pre-commit-hooks
with:
Expand Down Expand Up @@ -130,7 +132,7 @@ jobs:
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

- name: Cache Pre-commit hooks
uses: actions/cache@v4.2.0
uses: actions/cache@v4.2.2
env:
cache-name: cache-pre-commit-hooks
with:
Expand Down
Loading