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
2 changes: 1 addition & 1 deletion .devcontainer/devcontainer.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "substrate",
"image": "ghcr.io/astral-sh/uv:python3.10-trixie",
"image": "ghcr.io/astral-sh/uv:python3.13-trixie",
"features": {
"ghcr.io/devcontainers/features/docker-in-docker:2": {
"moby": false
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ jobs:
--data project_url="https://github.com/user/repo" \
--data author_name="John Smith" \
--data author_email="john@example.com" \
--data python_version="3.10" \
--data python_version="${{ matrix.python-version }}" \
--data typing="${{ matrix.typing }}" \
--data with_fastapi_api=true \
--data with_typer_cli=true
Expand Down
2 changes: 1 addition & 1 deletion copier.yml
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ author_email:
python_version:
type: str
help: "{% if project_type == 'app' %}Which Python version should your app use?{% else %}What is the minimum Python version your package should support?{% endif %}"
default: "{% if project_type == 'app' %}3.12{% else %}3.10{% endif %}"
default: "{% if project_type == 'app' %}3.13{% else %}3.12{% endif %}"

ci:
type: str
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[project]
name = "substrate"
version = "1.6.0"
requires-python = ">=3.10"
requires-python = ">=3.13,<3.14"
dependencies = [
"commitizen>=4.3.0",
"copier>=9.4.1",
Expand Down
2 changes: 1 addition & 1 deletion test.sh
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ for project_type in "${project_types[@]}"; do
--data project_url="https://github.com/user/repo" \
--data author_name="John Smith" \
--data author_email="john@example.com" \
--data python_version="3.10" \
--data python_version="3.12" \
--data typing="$typing" \
--data with_fastapi_api=true \
--data with_typer_cli="$([ "$project_type" == "app" ] && echo false || echo true)"
Expand Down
Loading
Loading