-
Notifications
You must be signed in to change notification settings - Fork 1
Fix new repo init #106
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
Fix new repo init #106
Changes from all commits
ea0d50e
3597f41
071e456
c2f19fe
291cebd
4bf12fe
9ea2112
27328d4
7d13d91
bbb2ef4
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 | ||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|
|
|
@@ -11,7 +11,7 @@ class ContextUpdater(ContextHook): | |||||||||||
| @override | ||||||||||||
| def hook(self, context: dict[Any, Any]) -> dict[Any, Any]: | ||||||||||||
| # These are duplicated in the install-ci-tooling.py script in this repository | ||||||||||||
| context["uv_version"] = "0.9.6" | ||||||||||||
| context["uv_version"] = "0.9.7" | ||||||||||||
| context["pre_commit_version"] = "4.3.0" | ||||||||||||
| # These also in pyproject.toml | ||||||||||||
| context["copier_version"] = "9.10.3" | ||||||||||||
|
|
@@ -37,7 +37,7 @@ def hook(self, context: dict[Any, Any]) -> dict[Any, Any]: | |||||||||||
| context["pyinstaller_version"] = "6.16.0" | ||||||||||||
| context["setuptools_version"] = "80.7.1" | ||||||||||||
| context["strawberry_graphql_version"] = "0.284.1" | ||||||||||||
| context["fastapi_version"] = "0.120.2" | ||||||||||||
| context["fastapi_version"] = "0.121.0" | ||||||||||||
| context["fastapi_offline_version"] = "1.7.4" | ||||||||||||
| context["uvicorn_version"] = "0.38.0" | ||||||||||||
| context["lab_auto_pulumi_version"] = "0.1.17" | ||||||||||||
|
|
@@ -60,7 +60,7 @@ def hook(self, context: dict[Any, Any]) -> dict[Any, Any]: | |||||||||||
| context["dotenv_cli_version"] = "^11.0.0" | ||||||||||||
| context["faker_version"] = "^10.1.0" | ||||||||||||
| context["vitest_version"] = "^3.2.4" | ||||||||||||
|
||||||||||||
| context["vitest_version"] = "^3.2.4" | |
| context["vitest_version"] = "^3.2.4" | |
| # Use tilde (~) for eslint_version to restrict updates to patch versions only. | |
| # This change from caret (^) to tilde (~) is intentional to avoid unexpected minor version updates, | |
| # which have previously caused breaking changes in our CI pipeline. Documented here for clarity. |
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.
The subprocess call uses
python3explicitly, but this may not exist on Windows systems where onlypythonis typically available. Consider usingsys.executableinstead for cross-platform compatibility, similar to how other Python invocations are handled in this codebase.