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
2 changes: 1 addition & 1 deletion ci/doc.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ name: cupy-xarray-doc
channels:
- conda-forge
dependencies:
- cupy-core
- cupy-core!=14.0.0,!=14.0.1 # https://github.com/cupy/cupy/issues/9777
- pip
- python=3.10
- sphinx
Expand Down
29 changes: 29 additions & 0 deletions docs/changelog.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,34 @@
# Changelog

## Version 0.1.5 - 2026-03-14

This release removes `cupy` as a required dependency for PyPI installs, so that users
can choose between different pre-compiled versions. Please install `cupy` manually
following instructions at <https://docs.cupy.dev/en/stable/install.html>. It also fixes a
`TypeError: isinstance()` bug related to dask, and will require a minimum version of
Python 3.10+.

### What's Changed

- Pin minimum version of furo to 2024.8.6 ([#64](https://github.com/xarray-contrib/cupy-xarray/pull/64))
- Check if Dask is installed ([#62](https://github.com/xarray-contrib/cupy-xarray/pull/62))
- Let user decide which cupy version to use ([#67](https://github.com/xarray-contrib/cupy-xarray/pull/67))
- Separate and number tutorials ([#72](https://github.com/xarray-contrib/cupy-xarray/pull/72))
- Set minimum supported version to Python 3.10+ ([#76](https://github.com/xarray-contrib/cupy-xarray/pull/76))
- Set license and license-files key in project metadata to follow PEP639 ([#75](https://github.com/xarray-contrib/cupy-xarray/pull/75))

### Contributors

- [Wei Ji Leong](https://github.com/weiji14)
- [Jacob Tomlinson](https://github.com/jacobtomlinson)
- [Justus Magin](https://github.com/keewis)
- [Max Jones](https://github.com/maxrjones)
- [Tobias Hölzer](https://github.com/relativityhd)

**Full Changelog**: <https://github.com/xarray-contrib/cupy-xarray/compare/0.1.4...0.1.5>

---

## Version 0.1.4 - 2024-07-27

This release brings several documentation improvements at
Expand Down
4 changes: 2 additions & 2 deletions docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,9 @@
import cupy_xarray # noqa: F401

project = "cupy-xarray"
copyright = "2020-2024, cupy-xarray developers"
copyright = "2020-2026, cupy-xarray developers"
author = "cupy-xarray developers"
release = "v0.1.4"
release = "v0.1.5"

# -- General configuration ---------------------------------------------------
# https://www.sphinx-doc.org/en/master/usage/configuration.html#general-configuration
Expand Down
Loading