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
1 change: 1 addition & 0 deletions docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,7 @@
"sphinx.ext.viewcode", # "View source" links
"sphinx.ext.intersphinx", # cross-links to external docs
"sphinx_design", # dropdown / collapsible directives
"sphinx_copybutton", # copy button for code blocks
]

templates_path = ["_templates"]
Expand Down
4 changes: 4 additions & 0 deletions docs/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -66,6 +66,10 @@ Quick Install

pip install jax-galsim

.. code-block:: bash

conda install -c conda-forge jax-galsim

See :doc:`installation` for GPU support and development setup.

Minimal Example
Expand Down
4 changes: 4 additions & 0 deletions docs/installation.rst
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,10 @@ Quick Install

pip install jax-galsim

.. code-block:: bash

conda install -c conda-forge jax-galsim

This installs JAX-GalSim and its dependencies (JAX, NumPy, GalSim, Astropy).

GPU Support
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ dependencies = ["numpy >=1.18.0", "galsim >=2.7.0", "jax >=0.6.0", "astropy >

[project.optional-dependencies]
dev = ["pytest", "pytest-codspeed"]
docs = ["sphinx>=7.0", "furo>=2024.1.29", "sphinx-design>=0.5"]
docs = ["sphinx>=7.0", "furo>=2024.1.29", "sphinx-design>=0.5", "sphinx-copybutton"]

[project.urls]
home = "https://github.com/GalSim-developers/JAX-GalSim"
Expand Down
Loading