Skip to content

Commit bc4df72

Browse files
authored
Changelog entry for v0.1.5 (#84)
Patch dependency with dependency related updates. * Update copyright year and release in docs/conf.py * Don't install cupy-core 14.0.0 or 14.0.1 in readthedocs build Avoid `TypeError: expected str, bytes or os.PathLike object, not NoneType`. Xref cupy/cupy#9777
1 parent 7ab75c0 commit bc4df72

File tree

3 files changed

+32
-3
lines changed

3 files changed

+32
-3
lines changed

ci/doc.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ name: cupy-xarray-doc
22
channels:
33
- conda-forge
44
dependencies:
5-
- cupy-core
5+
- cupy-core!=14.0.0,!=14.0.1 # https://github.com/cupy/cupy/issues/9777
66
- pip
77
- python=3.10
88
- sphinx

docs/changelog.md

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,34 @@
11
# Changelog
22

3+
## Version 0.1.5 - 2026-03-14
4+
5+
This release removes `cupy` as a required dependency for PyPI installs, so that users
6+
can choose between different pre-compiled versions. Please install `cupy` manually
7+
following instructions at <https://docs.cupy.dev/en/stable/install.html>. It also fixes a
8+
`TypeError: isinstance()` bug related to dask, and will require a minimum version of
9+
Python 3.10+.
10+
11+
### What's Changed
12+
13+
- Pin minimum version of furo to 2024.8.6 ([#64](https://github.com/xarray-contrib/cupy-xarray/pull/64))
14+
- Check if Dask is installed ([#62](https://github.com/xarray-contrib/cupy-xarray/pull/62))
15+
- Let user decide which cupy version to use ([#67](https://github.com/xarray-contrib/cupy-xarray/pull/67))
16+
- Separate and number tutorials ([#72](https://github.com/xarray-contrib/cupy-xarray/pull/72))
17+
- Set minimum supported version to Python 3.10+ ([#76](https://github.com/xarray-contrib/cupy-xarray/pull/76))
18+
- Set license and license-files key in project metadata to follow PEP639 ([#75](https://github.com/xarray-contrib/cupy-xarray/pull/75))
19+
20+
### Contributors
21+
22+
- [Wei Ji Leong](https://github.com/weiji14)
23+
- [Jacob Tomlinson](https://github.com/jacobtomlinson)
24+
- [Justus Magin](https://github.com/keewis)
25+
- [Max Jones](https://github.com/maxrjones)
26+
- [Tobias Hölzer](https://github.com/relativityhd)
27+
28+
**Full Changelog**: <https://github.com/xarray-contrib/cupy-xarray/compare/0.1.4...0.1.5>
29+
30+
---
31+
332
## Version 0.1.4 - 2024-07-27
433

534
This release brings several documentation improvements at

docs/conf.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,9 @@
1111
import cupy_xarray # noqa: F401
1212

1313
project = "cupy-xarray"
14-
copyright = "2020-2024, cupy-xarray developers"
14+
copyright = "2020-2026, cupy-xarray developers"
1515
author = "cupy-xarray developers"
16-
release = "v0.1.4"
16+
release = "v0.1.5"
1717

1818
# -- General configuration ---------------------------------------------------
1919
# https://www.sphinx-doc.org/en/master/usage/configuration.html#general-configuration

0 commit comments

Comments
 (0)