Skip to content

Commit cbab805

Browse files
Merge pull request #239 from neutrinoceros/rel_1.1.3
2 parents 9362472 + e165c11 commit cbab805

File tree

4 files changed

+40
-5
lines changed

4 files changed

+40
-5
lines changed

doc/source/changelog.rst

Lines changed: 36 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,14 +13,49 @@ The `CREDITS file
1313
contains the most up-to-date list of everyone who has contributed to the
1414
yt_astro_analysis source code.
1515

16+
Version 1.1.3
17+
-------------
18+
19+
Release date: *October 11, 2023*
20+
21+
Bugfixes
22+
^^^^^^^^
23+
* 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>`__
24+
* Avoid usage of deprecated unyt API `PR #207 <https://github.com/yt-project/yt_astro_analysis/pull/207>`__
25+
* Fix usage of deprecated (and removed) clobber argument from astropy `PR #226 <https://github.com/yt-project/yt_astro_analysis/pull/226>`__
26+
* Updated ppv_cube.py to avoid deprecated function 'update_all_headers' `PR #225 <https://github.com/yt-project/yt_astro_analysis/pull/225>`__
27+
28+
Documentation and tests
29+
^^^^^^^^^^^^^^^^^^^^^^^
30+
* Migrate away from configuration key format deprecated in Sphinx 7.0 `PR #195 <https://github.com/yt-project/yt_astro_analysis/pull/195>`__
31+
* Treat warnings as errors `PR #201 <https://github.com/yt-project/yt_astro_analysis/pull/201>`__
32+
* Fix RadMC3DWriter's docstring (compat with modern yt) `PR #206 <https://github.com/yt-project/yt_astro_analysis/pull/206>`__
33+
* Fix a couple bugs in PPVCube notebook `PR #228 <https://github.com/yt-project/yt_astro_analysis/pull/228>`__
34+
* Pin doc requirements `PR #235 <https://github.com/yt-project/yt_astro_analysis/pull/235>`__
35+
* Upgrade sphinx to latest version and enable automated upgrades for doc dependencies `PR #237 <https://github.com/yt-project/yt_astro_analysis/pull/237>`__
36+
* Support installation of rockstar through conda `PR #219 <https://github.com/yt-project/yt_astro_analysis/pull/219>`__
37+
38+
Build and Requirements
39+
^^^^^^^^^^^^^^^^^^^^^^
40+
* Migrate metadata to pyproject.toml, and drop setup.cfg `PR #175 <https://github.com/yt-project/yt_astro_analysis/pull/175>`__
41+
* Drop dependency on more_itertools `PR #178 <https://github.com/yt-project/yt_astro_analysis/pull/178>`__
42+
* Set upper limit to runtime numpy `PR #205 <https://github.com/yt-project/yt_astro_analysis/pull/205>`__
43+
* Stop building wheels for Windows 32 `PR #217 <https://github.com/yt-project/yt_astro_analysis/pull/217>`__
44+
* 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>`__
45+
* Add wheels for CPython 3.12 `PR #216 <https://github.com/yt-project/yt_astro_analysis/pull/216>`__
46+
* Migrate from oldest-supported-numpy to NPY_TARGET_VERSION (Python >= 3.9) `PR #218 <https://github.com/yt-project/yt_astro_analysis/pull/218>`__
47+
* Drop support for CPython 3.8 `PR #222 <https://github.com/yt-project/yt_astro_analysis/pull/222>`__
48+
49+
**Full Changelog**: https://github.com/yt-project/yt_astro_analysis/compare/yt_astro_analysis-1.1.2...yt_astro_analysis-1.1.3
50+
51+
1652
Version 1.1.2
1753
-------------
1854

1955
Release date: *January 23, 2023*
2056

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

doc/source/conf.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -79,9 +79,9 @@
7979
# built documents.
8080
#
8181
# The short X.Y version.
82-
version = "1.2.dev1"
82+
version = "1.1"
8383
# The full version, including alpha/beta/rc tags.
84-
release = "1.2.dev1"
84+
release = "1.1.3"
8585

8686
# The language for content autogenerated by Sphinx. Refer to documentation
8787
# for a list of supported languages.

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ requires = [
77

88
[project]
99
name = "yt_astro_analysis"
10-
version = "1.2.dev1"
10+
version = "1.1.3"
1111
description = "yt astrophysical analysis modules extension"
1212
authors = [
1313
{ name = "The yt project", email = "yt-dev@python.org" },

yt_astro_analysis/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
# The full license is in the file COPYING.txt, distributed with this software.
1414
# -----------------------------------------------------------------------------
1515

16-
__version__ = "1.2.dev1"
16+
__version__ = "1.1.3"
1717

1818
from yt_astro_analysis import (
1919
cosmological_observation,

0 commit comments

Comments
 (0)