Skip to content

Commit dd5c9f4

Browse files
Jammy2211claude
authored andcommitted
fix: use env markers for anesthetic — exact pin on 3.12, relaxed on 3.13
anesthetic==2.8.14 works on 3.12 but requires numpy<2.0.0 which is incompatible with 3.13. Use environment markers to keep the exact pin on 3.12 while allowing >=2.9.0 (numpy 2.x compatible) on 3.13. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
1 parent bbef0be commit dd5c9f4

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

pyproject.toml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,8 @@ keywords = ["cli"]
2525
dependencies = [
2626
"autoconf",
2727
"array_api_compat",
28-
"anesthetic>=2.8.14",
28+
"anesthetic==2.8.14; python_version < '3.13'",
29+
"anesthetic>=2.9.0; python_version >= '3.13'",
2930
"corner==2.2.2",
3031
"decorator>=4.2.1",
3132
"dill>=0.3.1.1",

0 commit comments

Comments
 (0)