Skip to content

Commit 91de779

Browse files
committed
Improve pylock requires-python exemple
Since `requires-python` is a version specifier, `==3.12` actually means `==3.12.0` which is not how one would intuitively interpret it.
1 parent 3ff10b0 commit 91de779

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

source/specifications/pylock-toml/pylock.example.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
lock-version = '1.0'
22
environments = ["sys_platform == 'win32'", "sys_platform == 'linux'"]
3-
requires-python = '== 3.12'
3+
requires-python = '== 3.12.*'
44
created-by = 'mousebender'
55

66
[[packages]]

0 commit comments

Comments
 (0)