Skip to content

Commit 674576b

Browse files
Jammy2211claude
authored andcommitted
chore: drop Python 3.14 from advertised classifiers
Python 3.14 hit a FactorGraphModel instance-iteration bug in autofit_workspace's overview_1_the_basics.py — same script, same library code, only Python version differs from 3.13 (which passes). Repro and investigation prompt: PyAutoPrompt/autofit/factor_graph_3_14_instance_iteration.md Drop 3.14 from the classifier list so PyPI doesn't advertise support. requires-python = ">=3.9" stays unchanged so users on 3.14 can still install — they just get the import-time banner warning that 3.14 isn't first-class. Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
1 parent a51a97f commit 674576b

1 file changed

Lines changed: 1 addition & 2 deletions

File tree

pyproject.toml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,8 +22,7 @@ classifiers = [
2222
"Programming Language :: Python :: 3.10",
2323
"Programming Language :: Python :: 3.11",
2424
"Programming Language :: Python :: 3.12",
25-
"Programming Language :: Python :: 3.13",
26-
"Programming Language :: Python :: 3.14"
25+
"Programming Language :: Python :: 3.13"
2726
]
2827
keywords = ["cli"]
2928
dependencies = [

0 commit comments

Comments
 (0)