Skip to content
Open
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
4 changes: 4 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,10 @@ Changelog

Contributors: Trevor James Smith (:user:`Zeitsperre`).

Breaking changes
^^^^^^^^^^^^^^^^
* `ravenpy` now explicitly requires `libjxl` in order to perform raster operations. This library was previously bundled with other existing dependencies. (PR #617)

Internal changes
^^^^^^^^^^^^^^^^
* Updates the cookiecutter template. (PR #600):
Expand Down
4 changes: 2 additions & 2 deletions docs/installation.rst
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ Python Installation (pip)

.. warning::

In order to compile the Raven model (provided by the `raven-hydro` package, a C++ compiler (`GCC`, `Clang`, `MSVC`, etc.) and either `GNU Make` (Linux/macOS) or `Ninja` (Windows) must be exposed on the `$PATH`.
In order to compile the Raven model (provided by the `raven-hydro` PyPI package), a C++ compiler (`GCC`, `Clang`, `MSVC`, etc.) and either `GNU Make` (Linux/macOS) or `Ninja` (Windows) must be exposed on the `$PATH`.

.. warning::

Expand All @@ -51,7 +51,7 @@ In order to perform this from Ubuntu/Debian:

.. code-block:: console

sudo apt-get install gcc libnetcdf-dev gdal proj geos
sudo apt-get install gcc gdal geos libjxl-tools libnetcdf-dev proj

Then, from your python environment, run:

Expand Down
1 change: 1 addition & 0 deletions environment-dev.yml
Original file line number Diff line number Diff line change
Expand Up @@ -60,6 +60,7 @@ dependencies:
- fiona >=1.9.0
- gdal >=3.1
- geopandas >=1.0
- libjxl >=0.11.0
- lxml
- netcdf4 >=1.7.2
- pyproj >=3.3.0
Expand Down
Loading