Skip to content

Commit 08f7bd1

Browse files
ruromeroclaude
andcommitted
fix(test): lower requires-python to >=3.9 to match CI Python version
CI uses Python 3.9 (setup-python in test.yml), so pip rejects pyproject.toml fixtures that require >=3.12. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
1 parent 18a8947 commit 08f7bd1

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[project]
22
name = "test-project"
33
version = "1.0.0"
4-
requires-python = ">=3.12"
4+
requires-python = ">=3.9"
55
dependencies = [
66
"requests[socks]==2.32.3",
77
]
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[project]
22
name = "test-project"
33
version = "1.0.0"
4-
requires-python = ">=3.12"
4+
requires-python = ">=3.9"
55
dependencies = [
66
"requests==2.32.3", #exhortignore
77
]

0 commit comments

Comments
 (0)