@@ -12,24 +12,32 @@ the 6.0 release.
12
12
13
13
In particular, this release includes:
14
14
15
- * Upgraded the minimum required version of Python to 3.10
15
+ * :ref: `whatsnew-6.1-minimum-python `
16
+ * :ref: `whatsnew-6.1-angular-separations `
17
+ * :ref: `whatsnew-6.1-ascii-default-int-columns-as-int64 `
18
+ * :ref: `whatsnew-6.1-copy-semantics `
19
+ * :ref: `whatsnew-6.1-cosmology-dataclass `
16
20
17
- In addition to these major changes, Astropy v6 .1 includes a large number of
21
+ In addition to these major changes, Astropy 6 .1 includes a large number of
18
22
smaller improvements and bug fixes, which are described in the :ref: `changelog `.
19
23
By the numbers:
20
24
21
- * X issues have been closed since v6.0
22
- * X pull requests have been merged since v6.0
23
- * X distinct people have contributed code
25
+ * 723 commits have been added since 6.0
26
+ * 172 issues have been closed since 6.0
27
+ * 276 pull requests have been merged since 6.0
28
+ * 51 people have contributed since 6.0
29
+ * 14 of which are new contributors
24
30
31
+ .. _whatsnew-6.1-minimum-python :
25
32
26
- Minimum Python Version
27
- ======================
33
+ Updated minimum Python version to 3.10
34
+ ======================================
28
35
29
36
The minimum required version of Python has been upgraded to 3.10. This is in line with
30
37
the `NumPy deprecation policy
31
38
<https://numpy.org/neps/nep-0029-deprecation_policy.html> `_.
32
39
40
+ .. _whatsnew-6.1-angular-separations :
33
41
34
42
Order-dependent angular separations now come with warnings
35
43
==========================================================
@@ -107,8 +115,8 @@ as string columns. The new default behavior is consistent with ``numpy`` v2 and
107
115
108
116
.. _whatsnew-6.1-copy-semantics :
109
117
110
- Copy semantics
111
- ==============
118
+ Changes to semantics of `` copy= `` keyword arguments
119
+ ===================================================
112
120
113
121
Public APIs that expose a ``copy `` argument and that previously set ``False ``
114
122
as a default value now use ``None `` instead if ``numpy `` v2 or newer is installed.
@@ -133,12 +141,10 @@ as follow
133
141
134
142
COPY_IF_NEEDED = False if np.__version__.startswith("1.") else None
135
143
144
+ .. _whatsnew-6.1-cosmology-dataclass :
136
145
137
- Updates to `~astropy.cosmology `
138
- ===============================
139
-
140
- |Cosmology | as a :func: `~dataclasses.dataclass `
141
- -----------------------------------------------
146
+ |Cosmology | is now a :func: `~dataclasses.dataclass `
147
+ ===================================================
142
148
143
149
The :class: `~astropy.cosmology.Cosmology ` class is
144
150
now a :func: `~dataclasses.dataclass `. This means that the :mod: `dataclasses ` machinery
@@ -163,9 +169,67 @@ using :func:`~dataclasses.make_dataclass`::
163
169
>>> [f.name for f in fields(NewC)]
164
170
['name', 'meta', 'newfield']
165
171
166
-
167
172
Full change log
168
173
===============
169
174
170
- To see a detailed list of all changes in version v6.0 , including changes in
175
+ To see a detailed list of all changes in version 6.1 , including changes in
171
176
API, please see the :ref: `changelog `.
177
+
178
+ Contributors to the 6.1 release
179
+ ===============================
180
+
181
+ The people who have contributed to the code for this release are:
182
+
183
+ .. hlist ::
184
+ :columns: 4
185
+
186
+ - Adam Ginsburg
187
+ - Albert Y. Shih
188
+ - Chiara Marmo
189
+ - Clément Robert
190
+ - Derek Homeier
191
+ - Eduardo Olinto *
192
+ - Eero Vaher
193
+ - Felipe Gameleira *
194
+ - Gordon Gibb *
195
+ - Hans Moritz Günther
196
+ - Henry Schreiner *
197
+ - Hélvio Peixoto
198
+ - James Davies
199
+ - Jero Bado
200
+ - Jo Bovy
201
+ - Kyle Conroy
202
+ - Larry Bradley
203
+ - Leo Singer
204
+ - Manodeep Sinha
205
+ - Manon Marchand
206
+ - Marcello Nascif
207
+ - Mark Taylor
208
+ - Marten van Kerkwijk
209
+ - Matteo Bachetti
210
+ - Maximilian Linhoff
211
+ - Michiel De Wilde *
212
+ - Mihai Cara
213
+ - Mridul Seth *
214
+ - Nathaniel Starkman
215
+ - Nick Murphy
216
+ - Ole Streicher
217
+ - Pey Lian Lim
218
+ - Piyush Sharma *
219
+ - Porter Averett *
220
+ - Prajwel Joseph
221
+ - Robert Queenin *
222
+ - Sam Holt *
223
+ - Sam Lee
224
+ - Sam Van Kooten
225
+ - Shaheer Ahmad *
226
+ - Simon Conseil
227
+ - Stephen Bailey *
228
+ - Stuart Littlefair
229
+ - Tanvi Pooranmal Meena *
230
+ - Thomas Robitaille
231
+ - Tom Aldcroft
232
+ - William Jamieson
233
+ - omahs *
234
+
235
+ Where a * indicates that this release contains their first contribution to astropy.
0 commit comments