Skip to content

Commit

Permalink
Documentation improvements. (#445)
Browse files Browse the repository at this point in the history
  • Loading branch information
delucchi-cmu authored Dec 20, 2024
1 parent 0cd372a commit 171b901
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 4 deletions.
7 changes: 6 additions & 1 deletion docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,12 @@
# -- General configuration ---------------------------------------------------
# https://www.sphinx-doc.org/en/master/usage/configuration.html#general-configuration

extensions = ["sphinx.ext.mathjax", "sphinx.ext.napoleon", "sphinx.ext.viewcode"]
extensions = [
"sphinx.ext.mathjax",
"sphinx.ext.napoleon",
"sphinx.ext.viewcode",
"sphinx_design",
]

extensions.append("autoapi.extension")
extensions.append("nbsphinx")
Expand Down
2 changes: 1 addition & 1 deletion docs/getting_started.rst
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ The latest release version of HATS is available to install with `pip <https://py
pyenv virtualenv 3.11 hats_env
pyenv local hats_env
We recommend Python versions **>=3.9, <=3.12**.
We recommend Python versions **>=3.10, <=3.12**.

HATS can also be installed from source on `GitHub <https://github.com/astronomy-commons/hats>`_.

Expand Down
3 changes: 2 additions & 1 deletion docs/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,8 @@ Getting Started
For the most part, we recommend accessing and processing HATS data using the `LSDB package
<https://github.com/astronomy-commons/lsdb>`_ framework. LSDB provides a variety of utility
functions as well as a lazy, distributed execution framework using Dask. However if you are are
interested in using just the HATS package, you can find installation instructions at the :ref:`getting started page<getting_started>`
interested in using just the HATS package, you can find installation instructions at the
:doc:`getting started page</getting_started>`.

Acknowledgements
-------------------------------------------------------------------------------
Expand Down
1 change: 1 addition & 0 deletions docs/requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -8,3 +8,4 @@ sphinx
sphinx-autoapi
sphinx-copybutton
sphinx-book-theme
sphinx-design
2 changes: 1 addition & 1 deletion src/hats/io/parquet_metadata.py
Original file line number Diff line number Diff line change
Expand Up @@ -276,5 +276,5 @@ def aggregate_column_statistics(
"max_value": stats_lists[1],
"null_count": stats_lists[2],
}
)
).set_index("column_names")
return frame

0 comments on commit 171b901

Please sign in to comment.