Skip to content

Commit

Permalink
Merge pull request #239 from neutrinoceros/rel_1.1.3
Browse files Browse the repository at this point in the history
  • Loading branch information
neutrinoceros authored Oct 11, 2023
2 parents 9362472 + e165c11 commit cbab805
Show file tree
Hide file tree
Showing 4 changed files with 40 additions and 5 deletions.
37 changes: 36 additions & 1 deletion doc/source/changelog.rst
Original file line number Diff line number Diff line change
Expand Up @@ -13,14 +13,49 @@ The `CREDITS file
contains the most up-to-date list of everyone who has contributed to the
yt_astro_analysis source code.

Version 1.1.3
-------------

Release date: *October 11, 2023*

Bugfixes
^^^^^^^^
* Handle deprecation warning from numpy 1.25 (np.product is deprecated in favour of np.prod) `PR #186 <https://github.com/yt-project/yt_astro_analysis/pull/186>`__
* Avoid usage of deprecated unyt API `PR #207 <https://github.com/yt-project/yt_astro_analysis/pull/207>`__
* Fix usage of deprecated (and removed) clobber argument from astropy `PR #226 <https://github.com/yt-project/yt_astro_analysis/pull/226>`__
* Updated ppv_cube.py to avoid deprecated function 'update_all_headers' `PR #225 <https://github.com/yt-project/yt_astro_analysis/pull/225>`__

Documentation and tests
^^^^^^^^^^^^^^^^^^^^^^^
* Migrate away from configuration key format deprecated in Sphinx 7.0 `PR #195 <https://github.com/yt-project/yt_astro_analysis/pull/195>`__
* Treat warnings as errors `PR #201 <https://github.com/yt-project/yt_astro_analysis/pull/201>`__
* Fix RadMC3DWriter's docstring (compat with modern yt) `PR #206 <https://github.com/yt-project/yt_astro_analysis/pull/206>`__
* Fix a couple bugs in PPVCube notebook `PR #228 <https://github.com/yt-project/yt_astro_analysis/pull/228>`__
* Pin doc requirements `PR #235 <https://github.com/yt-project/yt_astro_analysis/pull/235>`__
* Upgrade sphinx to latest version and enable automated upgrades for doc dependencies `PR #237 <https://github.com/yt-project/yt_astro_analysis/pull/237>`__
* Support installation of rockstar through conda `PR #219 <https://github.com/yt-project/yt_astro_analysis/pull/219>`__

Build and Requirements
^^^^^^^^^^^^^^^^^^^^^^
* Migrate metadata to pyproject.toml, and drop setup.cfg `PR #175 <https://github.com/yt-project/yt_astro_analysis/pull/175>`__
* Drop dependency on more_itertools `PR #178 <https://github.com/yt-project/yt_astro_analysis/pull/178>`__
* Set upper limit to runtime numpy `PR #205 <https://github.com/yt-project/yt_astro_analysis/pull/205>`__
* Stop building wheels for Windows 32 `PR #217 <https://github.com/yt-project/yt_astro_analysis/pull/217>`__
* Switch to Cython 3.0, forbid deprecated Numpy C API in generated code `PR #211 <https://github.com/yt-project/yt_astro_analysis/pull/211>`__
* Add wheels for CPython 3.12 `PR #216 <https://github.com/yt-project/yt_astro_analysis/pull/216>`__
* Migrate from oldest-supported-numpy to NPY_TARGET_VERSION (Python >= 3.9) `PR #218 <https://github.com/yt-project/yt_astro_analysis/pull/218>`__
* Drop support for CPython 3.8 `PR #222 <https://github.com/yt-project/yt_astro_analysis/pull/222>`__

**Full Changelog**: https://github.com/yt-project/yt_astro_analysis/compare/yt_astro_analysis-1.1.2...yt_astro_analysis-1.1.3


Version 1.1.2
-------------

Release date: *January 23, 2023*

Bugfixes
^^^^^^^^

* Fix compatibility with numpy 1.24 (numpy.float was removed) `PR #169 <https://github.com/yt-project/yt_astro_analysis/pull/169>`__
* Build wheels for Python 3.11 `PR #170 <https://github.com/yt-project/yt_astro_analysis/pull/170>`__

Expand Down
4 changes: 2 additions & 2 deletions doc/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -79,9 +79,9 @@
# built documents.
#
# The short X.Y version.
version = "1.2.dev1"
version = "1.1"
# The full version, including alpha/beta/rc tags.
release = "1.2.dev1"
release = "1.1.3"

# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ requires = [

[project]
name = "yt_astro_analysis"
version = "1.2.dev1"
version = "1.1.3"
description = "yt astrophysical analysis modules extension"
authors = [
{ name = "The yt project", email = "yt-dev@python.org" },
Expand Down
2 changes: 1 addition & 1 deletion yt_astro_analysis/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
# The full license is in the file COPYING.txt, distributed with this software.
# -----------------------------------------------------------------------------

__version__ = "1.2.dev1"
__version__ = "1.1.3"

from yt_astro_analysis import (
cosmological_observation,
Expand Down

0 comments on commit cbab805

Please sign in to comment.