Skip to content

Commit 45628b0

Browse files
committed
🔧 Update Python minimum version validator to require >= 8
reflecting the actual minimum Python version that uv supports.
1 parent a0dfbc6 commit 45628b0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

copier.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@ python_min:
8989
help: Minimal minor version of python, i.e '9' or '13' for 3.9 or 3.13
9090
default: 13
9191
validator: >-
92-
{% if python_min < 0 %}Must be >= 0{% endif %}
92+
{% if python_min < 8 %}Must be >= 8{% endif %}
9393
9494
python_max:
9595
type: int

0 commit comments

Comments
 (0)