Skip to content

Commit a312c58

Browse files
authored
Copier update (Apple Silicon compatibility) (#59)
Pull in upstream template changes
1 parent ddbcc1d commit a312c58

File tree

7 files changed

+20
-6
lines changed

7 files changed

+20
-6
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.62
2+
_commit: v0.0.63
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
@@ -61,5 +61,5 @@
6161
"initializeCommand": "sh .devcontainer/initialize-command.sh",
6262
"onCreateCommand": "sh .devcontainer/on-create-command.sh",
6363
"postStartCommand": "sh .devcontainer/post-start-command.sh"
64-
// Devcontainer context hash (do not manually edit this, it's managed by a pre-commit hook): 3cf424d8 # spellchecker:disable-line
64+
// Devcontainer context hash (do not manually edit this, it's managed by a pre-commit hook): 68bd5592 # spellchecker:disable-line
6565
}

.devcontainer/docker-compose.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
services:
22
devcontainer:
3+
# added the platform flag to override any local settings since this image is only compatible with linux/amd64.
4+
platform: linux/amd64
35
build:
46
context: .
57
args:

.gitignore

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -76,5 +76,10 @@ dist
7676
# Logs
7777
*.log
7878
**/logs/log*.txt
79+
**/logs/*.log.*
80+
81+
# macOS dev cleanliness
82+
*.DS_Store
83+
.DS_Store
7984

8085
# Ignores specific to this repository

extensions/context.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -20,13 +20,13 @@ def hook(self, context: dict[Any, Any]) -> dict[Any, Any]:
2020
context["copier_version"] = "9.8.0"
2121
context["copier_template_extensions_version"] = "0.3.2"
2222
context["sphinx_version"] = "8.1.3"
23-
context["pulumi_version"] = "3.188.0"
24-
context["pulumi_aws_version"] = "7.3.1"
25-
context["pulumi_aws_native_version"] = "1.31.0"
23+
context["pulumi_version"] = "3.189.0"
24+
context["pulumi_aws_version"] = "7.4.0"
25+
context["pulumi_aws_native_version"] = "1.32.0"
2626
context["pulumi_command_version"] = "1.1.0"
2727
context["pulumi_github_version"] = "6.7.3"
2828
context["pulumi_okta_version"] = "4.20.0"
29-
context["boto3_version"] = "1.40.6"
29+
context["boto3_version"] = "1.40.9"
3030
context["ephemeral_pulumi_deploy_version"] = "0.0.4"
3131
context["pydantic_version"] = "2.11.7"
3232
context["pyinstaller_version"] = "6.13.0"

template/.devcontainer/docker-compose.yml.jinja

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
{% raw %}services:
22
devcontainer:
3+
# added the platform flag to override any local settings since this image is only compatible with linux/amd64.
4+
platform: linux/amd64
35
build:
46
context: .
57
args:

template/.gitignore

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -76,5 +76,10 @@ dist
7676
# Logs
7777
*.log
7878
**/logs/log*.txt
79+
**/logs/*.log.*
80+
81+
# macOS dev cleanliness
82+
*.DS_Store
83+
.DS_Store
7984

8085
# Ignores specific to this repository

0 commit comments

Comments
 (0)