Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 8 additions & 3 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,13 @@ classifiers = [
]
keywords = ["cli"]
dependencies = [
"autofit",
"autoarray",
# Floors, not pins. Without them, pip backtracking the extras chain
# (autogalaxy[jax] -> autofit[jax] -> autonerves[jax]) may walk the release
# history to 2022: "version X does not provide the extra 'jax'" is a pip
# *warning*, not an error, so a pre-extras release is a legal solution.
# PyAutoLens#687.
"autofit>=2026.7.29.2",
"autoarray>=2026.7.29.2",
"astropy>=5.0,<=7.2.0",
"nautilus-sampler==1.0.5"
]
Expand All @@ -51,7 +56,7 @@ jax = [
# searches (MultiStartAdam / MultiStartProdigy) import. Without it the chain
# autolens[jax] -> autogalaxy[jax] stopped at autonerves[jax], so `pip
# install autolens[jax]` left those searches raising ImportError.
"autofit[jax]",
"autofit[jax]>=2026.7.29.2",
"jax_zero_contour>=2.0.0,<3.0.0"
]
optional = [
Expand Down
Loading