-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request h5py#2002 from takluyver/rever-3.6
Prepare to release 3.6
- Loading branch information
Showing
9 changed files
with
38 additions
and
71 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
What's new in h5py 3.6 | ||
====================== | ||
|
||
New features | ||
------------ | ||
|
||
* Pre-built packages are now available for Python 3.10. | ||
|
||
Deprecations | ||
------------ | ||
|
||
* Using :meth:`.Dataset.astype` as a context manager (``with dset.astype(t):``) | ||
is deprecated. Slice the object returned by astype instead | ||
(``data = dset.astype(t)[:10]``). This works from h5py 3.0 onwards. | ||
* Getting the value of ``h5py.get_config().default_file_mode`` now issues a | ||
deprecation warning. This has been ``'r'`` by default from h5py 3.0, and | ||
cannot be changed since 3.3. | ||
|
||
Building h5py | ||
------------- | ||
|
||
* h5py now requires the ``oldest-supported-numpy`` package at build time, | ||
instead of maintaining its own list of the oldest supported NumPy versions. | ||
The effect should be similar, but hopefully more reliable. | ||
|
||
Development | ||
----------- | ||
|
||
* The custom ``setup.py test`` has been removed. | ||
`tox <https://tox.wiki/en/latest/>`_ should be used instead during | ||
development (see :ref:`contrib-run-tests`), and ``pytest --pyargs h5py`` can | ||
be used to test h5py after installation. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -8,6 +8,7 @@ These document the changes between minor (or major) versions of h5py. | |
|
||
.. toctree:: | ||
|
||
3.6 | ||
3.5 | ||
3.4 | ||
3.3 | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters