Skip to content

Commit

Permalink
Update dependencies (#476)
Browse files Browse the repository at this point in the history
* Update dependencies

* Update docs/getting-started.rst

Co-authored-by: Konstantin Malanchev <hombit@gmail.com>

---------

Co-authored-by: Konstantin Malanchev <hombit@gmail.com>
  • Loading branch information
delucchi-cmu and hombit authored Oct 29, 2024
1 parent 4fef428 commit b7f8127
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 1 deletion.
12 changes: 12 additions & 0 deletions docs/getting-started.rst
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,18 @@ The latest release version of LSDB is available to install with `pip <https://py
LSDB can also be installed from source on `GitHub <https://github.com/astronomy-commons/lsdb>`_. See our
advanced installation instructions in the :doc:`contribution guide </developer/contributing>`.

.. tip::
Installing optional dependencies

There are some extra dependencies that can make running LSDB in a jupyter
environment easier, or connecting to a variety of remote file systems.

These can be installed with the ``full`` extra.

.. code-block:: console
python -m pip install 'lsdb[full]'
Quickstart
--------------------------

Expand Down
7 changes: 6 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ dependencies = [
# dask diagnostics is required to spin up the dashboard for profiling.
"dask[complete]",
"deprecated",
"hats>=0.4",
"hats>=0.4.2",
"lsst-sphgeom", # To handle spherical sky polygons
"nested-dask",
"nested-pandas",
Expand All @@ -45,6 +45,11 @@ dev = [
"pytest-cov", # Used to report total code coverage
"pytest-mock", # Used to mock objects in tests
]
full = [
"fsspec[full]", # complete file system specs.
"ipykernel", # Support for Jupyter notebooks
"ipywidgets", # useful for tqdm in notebooks.
]

[build-system]
requires = [
Expand Down

0 comments on commit b7f8127

Please sign in to comment.