Skip to content

Commit e2e1318

Browse files
committed
copier
1 parent 2abe759 commit e2e1318

File tree

5 files changed

+23
-9
lines changed

5 files changed

+23
-9
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.81
2+
_commit: v0.0.82
33
_src_path: gh:LabAutomationAndScreening/copier-base-template.git
44
description: Copier template for creating Python libraries and executables
55
install_claude_cli: false

.devcontainer/devcontainer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,5 +63,5 @@
6363
"initializeCommand": "sh .devcontainer/initialize-command.sh",
6464
"onCreateCommand": "sh .devcontainer/on-create-command.sh",
6565
"postStartCommand": "sh .devcontainer/post-start-command.sh"
66-
// Devcontainer context hash (do not manually edit this, it's managed by a pre-commit hook): ac3ca44a # spellchecker:disable-line
66+
// Devcontainer context hash (do not manually edit this, it's managed by a pre-commit hook): 9b83ba62 # spellchecker:disable-line
6767
}

.pre-commit-config.yaml

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -140,7 +140,13 @@ repos:
140140
rev: e73b8ba0c1316be565983236c72e653ad44e6b66 # frozen: v1.7.7
141141
hooks:
142142
- id: docformatter
143-
exclude: (tests*)|(exceptions\.py)|(warnings\.py)
143+
exclude: |
144+
(?x)^(
145+
.*/tests/.*|
146+
exceptions\.py|
147+
warnings\.py|
148+
.*/generated/open[-_]api/.*|
149+
)$
144150
args:
145151
- --in-place
146152
- --wrap-summaries=150

extensions/context.py

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -20,9 +20,9 @@ def hook(self, context: dict[Any, Any]) -> dict[Any, Any]:
2020
context["copier_version"] = "9.10.3"
2121
context["copier_template_extensions_version"] = "0.3.3"
2222
context["sphinx_version"] = "8.1.3"
23-
context["pulumi_version"] = "3.205.0"
24-
context["pulumi_aws_version"] = "7.10.0"
25-
context["pulumi_aws_native_version"] = "1.37.0"
23+
context["pulumi_version"] = "3.206.0"
24+
context["pulumi_aws_version"] = "7.11.0"
25+
context["pulumi_aws_native_version"] = "1.38.0"
2626
context["pulumi_command_version"] = "1.1.3"
2727
context["pulumi_github_version"] = "6.8.0"
2828
context["pulumi_okta_version"] = "6.1.0"
@@ -41,6 +41,8 @@ def hook(self, context: dict[Any, Any]) -> dict[Any, Any]:
4141
context["uuid_utils_version"] = "0.11.0"
4242
context["syrupy_version"] = "5.0.0"
4343
context["structlog_version"] = "25.5.0"
44+
context["httpx_version"] = "0.28.1"
45+
context["python_kiota_bundle_version"] = "1.9.7"
4446

4547
context["node_version"] = "24.7.0"
4648
context["nuxt_ui_version"] = "^4.1.0"
@@ -59,15 +61,15 @@ def hook(self, context: dict[Any, Any]) -> dict[Any, Any]:
5961
context["nuxt_eslint_version"] = "^1.10.0"
6062
context["zod_version"] = "^4.1.12"
6163
context["zod_from_json_schema_version"] = "^0.5.1"
62-
context["types_node_version"] = "^24.9.2"
64+
context["types_node_version"] = "^24.10.0"
6365
context["nuxt_apollo_version"] = "5.0.0-alpha.15"
6466
context["graphql_codegen_cli_version"] = "^6.0.0"
6567
context["graphql_codegen_typescript_version"] = "^5.0.0"
6668
context["graphql_codegen_typescript_operations_version"] = "^5.0.0"
6769
context["tailwindcss_version"] = "^4.1.11"
6870
context["iconify_vue_version"] = "^5.0.0"
6971
context["iconify_json_lucide_version"] = "^1.2.71"
70-
context["nuxt_fonts_version"] = "^0.11.4"
72+
context["nuxt_fonts_version"] = "^0.12.1"
7173
context["nuxtjs_color_mode_version"] = "^3.5.2"
7274
context["vue_test_utils_version"] = "^2.4.6"
7375
context["nuxt_test_utils_version"] = "3.19.1"

template/.pre-commit-config.yaml

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -140,7 +140,13 @@ repos:
140140
rev: e73b8ba0c1316be565983236c72e653ad44e6b66 # frozen: v1.7.7
141141
hooks:
142142
- id: docformatter
143-
exclude: (tests*)|(exceptions\.py)|(warnings\.py)
143+
exclude: |
144+
(?x)^(
145+
.*/tests/.*|
146+
exceptions\.py|
147+
warnings\.py|
148+
.*/generated/open[-_]api/.*|
149+
)$
144150
args:
145151
- --in-place
146152
- --wrap-summaries=150

0 commit comments

Comments
 (0)