You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Solving the signedness problem with integers and releasing version 2.0.0
* Fixes#268; Solving the signedness problem with integers.
* Small clean-up.
* Switch to use size_t everywhere.
* Fixing numpy seed in the example script for easier debugging.
* CHANGELOG updated for python3 release.
* Mentioning JOSS paper update and v1.2.2 mentioned in the CHANGELOG.
Copy file name to clipboardExpand all lines: CHANGELOG.rst
+19-15Lines changed: 19 additions & 15 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -33,13 +33,13 @@ and this project adheres to
33
33
.. Attribution
34
34
.. ^^^^^^^^^^^
35
35
36
-
[v2.0.0] - 2023-02-03
36
+
[v2.0.0] - 2023-02-16
37
37
~~~~~~~~~~~~~~~~~~~~~
38
38
39
39
Summary
40
40
^^^^^^^
41
41
42
-
* This major release candidate migrates X-PSI from Python2 (X-PSI v1.2.1 or lower) to Python3 (X-PSI v2.0 and higher), with corresponding updates and improvements to all documentation and tutorials.
42
+
* This major release migrates X-PSI from Python2 (X-PSI v1.2.1 or lower) to Python3 (X-PSI v2.0 and higher), with corresponding updates and improvements to all documentation and tutorials.
43
43
44
44
Fixed
45
45
^^^^^
@@ -53,32 +53,36 @@ Added
53
53
* Post-processing - adding names of parameters across diagonal in corner plots
54
54
* Extra yticks options for plotting functions in the tutorials
55
55
* `--noopenmp` install option for Mac Users
56
-
* Added option to fix the random seed for the synthetic data generation in Python3 version
56
+
* Added option to fix the random seed for the synthetic data generation in Python3 version.
57
+
* Added option to plot y-axis in the residuals in a user selected scale (e.g., either log or lin).
57
58
58
59
Changed
59
60
^^^^^^^
60
61
61
-
* Modified all X-PSI routines to work in Python3
62
+
* Modified all X-PSI routines to work in Python3.
62
63
* General Documentation (Applications, Team and Acknowledgements, Citation, Future pages) updated for both Python2 and Python3 documentation branches.
63
-
* Installation and tutorial pages modified for Python3
64
-
* Module generator updated for Python3 and documentation added
65
-
* Projection tool updated for Python3 and documentation added
66
-
* Github actions modified to work in Python3
67
-
* Github actions modified to use mamba with install commands on one line to improve speed
68
-
* Updated references in the documentation and tutorial notebooks
69
-
* CustomInstrument channel_edges argument now changed to mandatory in tutorial notebooks and examples
70
-
* X-PSI Postprocessing now supports up-to-date versions of Nestcheck, Getdist.
64
+
* Installation and tutorial pages modified for Python3.
65
+
* Module generator updated for Python3 and documentation added.
66
+
* Projection tool updated for Python3 and documentation added.
67
+
* Github actions modified to work in Python3.
68
+
* Github actions modified to use mamba with install commands on one line to improve speed.
69
+
* Updated references in the documentation and tutorial notebooks.
70
+
* CustomInstrument channel_edges argument now changed to mandatory in tutorial notebooks and examples.
71
+
* X-PSI Postprocessing now supports up-to-date versions of NestCheck and GetDist.
72
+
* Specified the integer types to be always size_t in Cython files in those integer comparisons that raised warnings for different signedness of integers.
73
+
* The JOSS paper has been updated to link to published version.
74
+
* A final Python2 release of X-PSI (v1.2.2) was created in the Python2 branch to match the JOSS publication.
71
75
72
76
Deprecated
73
77
^^^^^^^^^^
74
78
75
-
* The Python2 version of X-PSI (v1.2.1) is now considered deprecated, although documentation and tutorials are still available.
79
+
* The Python2 version of X-PSI (v1.2.2) is now considered deprecated, although documentation and tutorials are still available.
76
80
77
81
Removed
78
82
^^^^^^^
79
83
80
-
* Removed requirement of FFMPEG for Animations in tutorials
81
-
* Suppressed printf() statements from c code in tutorial notebooks
84
+
* Removed requirement of FFMPEG for Animations in tutorials.
85
+
* Suppressed printf() statements from c code in tutorial notebooks.
0 commit comments