Skip to content
Merged
Show file tree
Hide file tree
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
2 changes: 1 addition & 1 deletion autogalaxy/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -128,7 +128,7 @@
from autonerves.fitsable import output_to_fits
from autonerves.fitsable import hdu_list_for_output_from

__version__ = "2026.7.9.1"
__version__ = "2026.7.23.1"

from autonerves import check_version

Expand Down
8 changes: 7 additions & 1 deletion docs/installation/conda.md
Original file line number Diff line number Diff line change
Expand Up @@ -37,9 +37,15 @@ The latest version of **PyAutoGalaxy** is installed via pip as follows (the comm
caching issues impacting the installation):

```bash
pip install autogalaxy --no-cache-dir
pip install autogalaxy[jax] --no-cache-dir
```

The `[jax]` extra installs \[**JAX**\](<https://docs.jax.dev/en/latest/notebooks/thinking_in_jax.html>), which
**PyAutoGalaxy** uses for just-in-time compilation and GPU acceleration. **JAX is not installed by default** — to
install without it, use `pip install autogalaxy --no-cache-dir` instead. The extra installs CPU-only JAX; for GPU
support, follow the official \[JAX installation guide\](<https://jax.readthedocs.io/en/latest/installation.html>)
**before** installing.

If pip prints warnings about dependency version conflicts, these can usually be ignored — the instructions below
will identify clearly if the installation is a success.

Expand Down
8 changes: 7 additions & 1 deletion docs/installation/pip.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,9 +24,15 @@ The latest version of **PyAutoGalaxy** is installed via pip as follows (specifyi
the installation has clean dependencies):

```bash
pip install autogalaxy
pip install autogalaxy[jax]
```

The `[jax]` extra installs \[**JAX**\](<https://docs.jax.dev/en/latest/notebooks/thinking_in_jax.html>), which
**PyAutoGalaxy** uses for just-in-time compilation and GPU acceleration. **JAX is not installed by default** — a
plain `pip install autogalaxy` gives a fully working install that runs on NumPy, without JAX acceleration. The
extra installs CPU-only JAX; for GPU support, follow the official
\[JAX installation guide\](<https://jax.readthedocs.io/en/latest/installation.html>) **before** installing.

If pip prints warnings about dependency version conflicts, these can usually be ignored — the instructions below
will identify clearly if the installation is a success.

Expand Down
Loading