From 91de779518df2a926b099e865820ba08e4597a4f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?St=C3=A9phane=20Bidoul?= Date: Tue, 24 Mar 2026 10:46:32 +0100 Subject: [PATCH] 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. --- source/specifications/pylock-toml/pylock.example.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/specifications/pylock-toml/pylock.example.toml b/source/specifications/pylock-toml/pylock.example.toml index 45e8731b2..8a439cd7a 100644 --- a/source/specifications/pylock-toml/pylock.example.toml +++ b/source/specifications/pylock-toml/pylock.example.toml @@ -1,6 +1,6 @@ lock-version = '1.0' environments = ["sys_platform == 'win32'", "sys_platform == 'linux'"] -requires-python = '== 3.12' +requires-python = '== 3.12.*' created-by = 'mousebender' [[packages]]