Skip to content

Commit

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

* Code review comments.
  • Loading branch information
delucchi-cmu authored Oct 29, 2024
1 parent 618c14e commit 5f5f3cb
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 5 deletions.
14 changes: 14 additions & 0 deletions docs/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,18 @@ need to install or upgrade versions of dependencies to work with hats-import.
pip install hats-import
.. tip::
Installing optional dependencies

There are some extra dependencies that can make running hats-import 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
>> pip install hats-import[full]
.. tip::
Installing on Mac

Expand All @@ -26,6 +38,8 @@ need to install or upgrade versions of dependencies to work with hats-import.
>> conda config --append channels conda-forge
>> conda install healpy
Setting up a pipeline
-------------------------------------------------------------------------------

Expand Down
11 changes: 6 additions & 5 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -17,13 +17,10 @@ dynamic = ["version"]
dependencies = [
"dask[complete]>=2024.3.0", # Includes dask expressions.
"deprecated",
"hats >=0.4",
"ipykernel", # Support for Jupyter notebooks
"hats >=0.4.2",
"numpy",
"pandas",
"pyarrow",
"pyyaml",
"scipy",
"tqdm",
"universal_pathlib",
]
Expand All @@ -41,7 +38,11 @@ dev = [
"pytest-cov",
"pytest-timeout",
"ray", # Used for dask-on-ray testing.
"types-PyYAML", # type stubs for pyyaml
]
full = [
"fsspec[full]", # complete file system specs.
"ipykernel", # Support for Jupyter notebooks
"ipywidgets", # useful for tqdm in notebooks.
]

[build-system]
Expand Down

0 comments on commit 5f5f3cb

Please sign in to comment.