-
Notifications
You must be signed in to change notification settings - Fork 1
Copier update (Python 3.14 support) #78
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from 3 commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -57,6 +57,7 @@ python_ci_versions: | |
| choices: | ||
| - "3.12.7" | ||
| - "3.13.2" | ||
| - "3.14.0" | ||
|
|
||
|
|
||
| aws_identity_center_id: | ||
|
|
||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -11,18 +11,18 @@ class ContextUpdater(ContextHook): | |
| @override | ||
| def hook(self, context: dict[Any, Any]) -> dict[Any, Any]: | ||
| context["uv_version"] = "0.9.7" | ||
| context["pnpm_version"] = "10.20.0" | ||
| context["pnpm_version"] = "10.21.0" | ||
| context["pre_commit_version"] = "4.3.0" | ||
| context["pyright_version"] = "1.1.407" | ||
| context["pytest_version"] = "8.4.2" | ||
| context["pytest_version"] = "9.0.0" | ||
| context["pytest_randomly_version"] = "4.0.1" | ||
| context["pytest_cov_version"] = "7.0.0" | ||
| context["copier_version"] = "9.10.3" | ||
| context["copier_template_extensions_version"] = "0.3.3" | ||
| context["sphinx_version"] = "8.1.3" | ||
| context["pulumi_version"] = "3.205.0" | ||
| context["pulumi_aws_version"] = "7.10.0" | ||
| context["pulumi_aws_native_version"] = "1.37.0" | ||
| context["pulumi_version"] = "3.206.0" | ||
| context["pulumi_aws_version"] = "7.11.0" | ||
| context["pulumi_aws_native_version"] = "1.38.0" | ||
| context["pulumi_command_version"] = "1.1.3" | ||
| context["pulumi_github_version"] = "6.8.0" | ||
| context["pulumi_okta_version"] = "6.1.0" | ||
|
|
@@ -41,6 +41,8 @@ def hook(self, context: dict[Any, Any]) -> dict[Any, Any]: | |
| context["uuid_utils_version"] = "0.11.0" | ||
| context["syrupy_version"] = "5.0.0" | ||
| context["structlog_version"] = "25.5.0" | ||
| context["httpx_version"] = "0.28.1" | ||
| context["python_kiota_bundle_version"] = "1.9.7" | ||
|
Comment on lines
+44
to
+45
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. 🧹 Nitpick | 🔵 Trivial Document the purpose of new dependencies. The addition of 🤖 Prompt for AI Agents |
||
|
|
||
| context["node_version"] = "24.7.0" | ||
| context["nuxt_ui_version"] = "^4.1.0" | ||
|
|
@@ -59,15 +61,15 @@ def hook(self, context: dict[Any, Any]) -> dict[Any, Any]: | |
| context["nuxt_eslint_version"] = "^1.10.0" | ||
| context["zod_version"] = "^4.1.12" | ||
| context["zod_from_json_schema_version"] = "^0.5.1" | ||
| context["types_node_version"] = "^24.9.2" | ||
| context["types_node_version"] = "^24.10.0" | ||
| context["nuxt_apollo_version"] = "5.0.0-alpha.15" | ||
| context["graphql_codegen_cli_version"] = "^6.0.0" | ||
| context["graphql_codegen_typescript_version"] = "^5.0.0" | ||
| context["graphql_codegen_typescript_operations_version"] = "^5.0.0" | ||
| context["tailwindcss_version"] = "^4.1.11" | ||
| context["iconify_vue_version"] = "^5.0.0" | ||
| context["iconify_json_lucide_version"] = "^1.2.71" | ||
| context["nuxt_fonts_version"] = "^0.11.4" | ||
| context["nuxt_fonts_version"] = "^0.12.1" | ||
| context["nuxtjs_color_mode_version"] = "^3.5.2" | ||
| context["vue_test_utils_version"] = "^2.4.6" | ||
| context["nuxt_test_utils_version"] = "3.19.1" | ||
|
|
@@ -94,9 +96,9 @@ def hook(self, context: dict[Any, Any]) -> dict[Any, Any]: | |
| context["gha_linux_runner"] = "ubuntu-24.04" | ||
| context["gha_windows_runner"] = "windows-2025" | ||
|
|
||
| context["py311_version"] = "" | ||
| context["py312_version"] = "3.12.7" | ||
| context["py313_version"] = "3.13.2" | ||
| context["py314_version"] = "3.14.0" | ||
|
|
||
| context["debian_release_name"] = "bookworm" | ||
| context["alpine_image_version"] = "3.22" | ||
|
|
||
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
🧹 Nitpick | 🔵 Trivial
Consider using HTTPS for the badge URL.
The OpenIssues badge uses
http://instead ofhttps://for isitmaintained.com. While the security risk is minimal for badge images, using HTTPS is generally preferred. This aligns with the same concern raised in the template file.If isitmaintained.com supports HTTPS, apply this diff:
📝 Committable suggestion
🤖 Prompt for AI Agents