Skip to content

Commit 3c1bb51

Browse files
committed
TMP: announcements
1 parent 95ddcea commit 3c1bb51

22 files changed

Lines changed: 1972 additions & 0 deletions

_static/css/astropy-org.css

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -64,3 +64,10 @@ table.package-table td.first-package-row {
6464
.third-row-sep tbody tr:nth-child(3n+4) {
6565
border-top: 1px var(--bs-border-color) solid;
6666
}
67+
68+
.announce-logo {
69+
display: flex;
70+
justify-content: center;
71+
align-items: center;
72+
flex-direction: column;
73+
}
12.4 KB
Loading

announcements/release-0.4.rst

Lines changed: 75 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,75 @@
1+
:orphan:
2+
3+
Astropy v0.4 Released!
4+
======================
5+
6+
Dear colleagues,
7+
8+
We are very happy to announce the third major public release (v0.4) of
9+
the astropy package, a core Python package for Astronomy:
10+
11+
http://www.astropy.org
12+
13+
Astropy is a community-driven package intended to contain much of the
14+
core functionality and common tools needed for performing astronomy and
15+
astrophysics with Python.
16+
17+
New and improved major functionality in this release includes:
18+
19+
- A new astropy.vo.samp sub-package adapted from the previously
20+
standalone SAMPy package
21+
- A re-designed astropy.coordinates sub-package for celestial
22+
coordinates
23+
- A new ‘fitsheader’ command-line tool that can be used to quickly
24+
inspect FITS headers
25+
- A new HTML table reader/writer
26+
- Improved performance for Quantity objects
27+
- A re-designed configuration framework
28+
29+
In addition, hundreds of smaller improvements and fixes have been made.
30+
An overview of the changes is provided at:
31+
32+
     https://docs.astropy.org/en/stable/whatsnew/0.4.html
33+
34+
Instructions for installing Astropy are provided on our
35+
`website <http://www.astropy.org>`__, and extensive documentation can be
36+
found at:
37+
38+
     https://docs.astropy.org
39+
40+
In particular, if you use Anaconda, you can update to v0.4 with:
41+
42+
::
43+
44+
conda update astropy
45+
46+
Please report any issues, or request new features via our GitHub
47+
repository:
48+
49+
     https://github.com/astropy/astropy/issues
50+
51+
Over 80 developers have contributed code to Astropy so far, and you can
52+
find out more about the team behind Astropy here:
53+
54+
     http://www.astropy.org/team.html
55+
56+
If you use Astropy directly - or as a dependency to another package -
57+
for your work, please remember to include the following acknowledgment
58+
at the end of papers:
59+
60+
This research made use of Astropy, a community-developed core Python
61+
package for Astronomy (Astropy Collaboration, 2013).
62+
63+
where (Astropy Collaboration, 2013) is a citation to the `Astropy
64+
Paper <https://doi.org/10.1051/0004-6361/201322068>`__
65+
(`ADS <http://adsabs.harvard.edu/abs/2013A%26A...558A..33A>`__ -
66+
`BibTeX <http://adsabs.harvard.edu/cgi-bin/nph-bib_query?bibcode=2013A%26A...558A..33A&data_type=BIBTEX&db_key=AST&nocookieset=1>`__).
67+
68+
Please feel free to forward this announcement to anyone you think might
69+
be interested in this release.
70+
71+
We hope that you enjoy using Astropy as much as we enjoyed developing
72+
it!
73+
74+
| Thomas Robitaille, Erik Tollerud, and Perry Greenfield
75+
| on behalf of The Astropy Collaboration

announcements/release-1.0.rst

Lines changed: 90 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,90 @@
1+
:orphan:
2+
3+
Astropy v1.0 Released!
4+
======================
5+
6+
Dear colleagues,
7+
8+
We are very happy to announce the fourth major public release (v1.0) of
9+
the astropy package, a core Python package for Astronomy:
10+
11+
http://www.astropy.org
12+
13+
Astropy is a community-driven Python package intended to contain much of
14+
the core functionality and common tools needed for astronomy and
15+
astrophysics.
16+
17+
New and improved major functionality in this release includes:
18+
19+
- Support for Altitude/Azimuth and Galactocentric coordinates in
20+
astropy.coordinates
21+
- A new astropy.visualization sub-package
22+
- A new astropy.analytic_functions sub-package
23+
- Compound models in astropy.modeling may now be created using
24+
arithmetic expressions, and the resulting models support fitting.
25+
- Significantly faster C-based readers/writers for astropy.io.ascii
26+
- Support for a new enhanced CSV ASCII table format
27+
- A refactored Table class with improved performance when
28+
adding/removing columns
29+
- Support for using Time, Quantity, or SkyCoord arrays as Table columns
30+
31+
In addition, hundreds of smaller improvements and fixes have been made.
32+
An overview of the changes is provided at:
33+
34+
     https://docs.astropy.org/en/stable/whatsnew/1.0.html
35+
36+
Astropy v1.0 is a special release that we are denoting a *Long Term
37+
Support* (LTS) release, which means that we will be supporting it with
38+
bug fixes for the next two years, rather than the usual six months. More
39+
information about this can be found at the link above.
40+
41+
Instructions for installing Astropy are provided on our
42+
`website <http://www.astropy.org>`__, and extensive documentation can be
43+
found at:
44+
45+
     https://docs.astropy.org
46+
47+
In particular, if you use the `Anaconda Python
48+
Distribution <https://store.continuum.io/cshop/anaconda/>`__, you can
49+
update to v1.0 with:
50+
51+
::
52+
53+
conda update astropy
54+
55+
Whereas if you usually use pip, you can do:
56+
57+
::
58+
59+
pip install astropy --upgrade
60+
61+
Please report any issues, or request new features via our GitHub
62+
repository:
63+
64+
     https://github.com/astropy/astropy/issues
65+
66+
Over 122 developers have contributed code to Astropy so far, and you can
67+
find out more about the team behind Astropy here:
68+
69+
     http://www.astropy.org/team.html
70+
71+
If you use Astropy directly for your work, or as a dependency to another
72+
package, please remember to include the following acknowledgment at the
73+
end of papers:
74+
75+
This research made use of Astropy, a community-developed core Python
76+
package for Astronomy (Astropy Collaboration, 2013).
77+
78+
where (Astropy Collaboration, 2013) is a citation to the `Astropy
79+
Paper <https://doi.org/10.1051/0004-6361/201322068>`__
80+
(`ADS <http://adsabs.harvard.edu/abs/2013A%26A...558A..33A>`__ -
81+
`BibTeX <http://adsabs.harvard.edu/cgi-bin/nph-bib_query?bibcode=2013A%26A...558A..33A&data_type=BIBTEX&db_key=AST&nocookieset=1>`__).
82+
83+
Please feel free to forward this announcement to anyone you think might
84+
be interested in this release.
85+
86+
We hope that you enjoy using Astropy as much as we enjoyed developing
87+
it!
88+
89+
| Thomas Robitaille, Erik Tollerud, and Perry Greenfield
90+
| on behalf of The Astropy Collaboration

announcements/release-1.1.rst

Lines changed: 100 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,100 @@
1+
:orphan:
2+
3+
Astropy v1.1 Released!
4+
======================
5+
6+
Dear colleagues,
7+
8+
We are very happy to announce the v1.1 release of the Astropy package, a
9+
core Python package for Astronomy:
10+
11+
.. rst-class:: announce-logo
12+
.. container::
13+
14+
.. image:: /_static/img/astropy_logo_notext.png
15+
:width: 100px
16+
17+
http://www.astropy.org
18+
19+
Astropy is a community-driven Python package intended to contain much of
20+
the core functionality and common tools needed for astronomy and
21+
astrophysics.
22+
23+
New and improved major functionality in this release includes:
24+
25+
- New functions to automatically determine histogram bins, including the
26+
Bayesian blocks algorithm
27+
- A new interface to transform between Table objects and pandas
28+
DataFrame objects
29+
- Support for table indexing
30+
- Support for supergalactic and ecliptic coordinates
31+
- A new .info attribute to get summary information about tables and
32+
columns
33+
- A new show_in_notebook() method to show a table in Jupyter/IPython
34+
notebooks with additional interactivity features
35+
- Support for new units, including logarithmic units such as magnitudes,
36+
dex, and decibels
37+
- Support for the Planck 2015 cosmology and significant performance
38+
improvements in the cosmology sub-package
39+
40+
In addition, hundreds of smaller improvements and fixes have been made.
41+
An overview of the changes is provided at:
42+
43+
     https://docs.astropy.org/en/stable/whatsnew/1.1.html
44+
45+
Instructions for installing Astropy are provided on our
46+
`website <http://www.astropy.org>`__, and extensive documentation can be
47+
found at:
48+
49+
     https://docs.astropy.org
50+
51+
If you make use of the `Anaconda Python
52+
Distribution <https://www.continuum.io/downloads>`__, you can update to
53+
Astropy v1.1 with:
54+
55+
::
56+
57+
conda update astropy
58+
59+
Whereas if you usually use pip, you can do:
60+
61+
::
62+
63+
pip install astropy --upgrade
64+
65+
Please report any issues, or request new features via our GitHub
66+
repository:
67+
68+
     https://github.com/astropy/astropy/issues
69+
70+
Over 160 developers have contributed code to Astropy so far, and you can
71+
find out more about the team behind Astropy here:
72+
73+
     http://www.astropy.org/team.html
74+
75+
As a reminder, Astropy v1.0 (our long term support release) will
76+
continue to be supported with bug fixes until Feb 19th 2017, so if you
77+
need to use Astropy in a very stable environment, you may want to
78+
consider staying on the v1.0.x set of releases rather than upgrading to
79+
v1.1.
80+
81+
If you use Astropy directly for your work, or as a dependency to another
82+
package, please remember to include the following acknowledgment at the
83+
end of papers:
84+
85+
This research made use of Astropy, a community-developed core Python
86+
package for Astronomy (Astropy Collaboration, 2013).
87+
88+
where (Astropy Collaboration, 2013) is a citation to the `Astropy
89+
Paper <https://doi.org/10.1051/0004-6361/201322068>`__
90+
(`ADS <http://adsabs.harvard.edu/abs/2013A%26A...558A..33A>`__ -
91+
`BibTeX <http://adsabs.harvard.edu/cgi-bin/nph-bib_query?bibcode=2013A%26A...558A..33A&data_type=BIBTEX&db_key=AST&nocookieset=1>`__).
92+
93+
Please feel free to forward this announcement to anyone you think might
94+
be interested in this release.
95+
96+
We hope that you enjoy using Astropy as much as we enjoyed developing
97+
it!
98+
99+
| Thomas Robitaille, Erik Tollerud, and Perry Greenfield
100+
| on behalf of The Astropy Collaboration

announcements/release-1.2.rst

Lines changed: 108 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,108 @@
1+
:orphan:
2+
3+
Astropy v1.2 Released!
4+
======================
5+
6+
Dear colleagues,
7+
8+
We are very happy to announce the v1.2 release of the Astropy package, a
9+
core Python package for Astronomy:
10+
11+
.. rst-class:: announce-logo
12+
.. container::
13+
14+
.. image:: /_static/img/astropy_logo_notext.png
15+
:width: 100px
16+
17+
http://www.astropy.org
18+
19+
Astropy is a community-driven Python package intended to contain much of
20+
the core functionality and common tools needed for astronomy and
21+
astrophysics.
22+
23+
New and improved major functionality in this release includes:
24+
25+
- A new class to compute Lomb-Scargle periodograms efficiently using
26+
different methods.
27+
- A number of new statistics functions including those for Jackknife
28+
resampling, circular statistics, and the Akaike and Bayesian
29+
information criteria.
30+
- Support for getting the positions of solar system bodies in the
31+
coordinates sub-package.
32+
- The ability to compute Barycentric and Heliocentric light-travel time
33+
corrections.
34+
- Support for offset coordinate frames, which can be used to define a
35+
coordinate system relative to a known position and rotation.
36+
- An implementation of the zscale algorithm to determine image limits
37+
automatically.
38+
- Support for bolometric magnitudes in the units package.
39+
- Improvements to the NDData class and subclasses.
40+
- Auto-downloading of IERS tables as needed, which gives information
41+
about Earth orientation parameters necessary for high precision
42+
coordinate calculations and conversions to/from the UT1 scale.
43+
44+
In addition, hundreds of smaller improvements and fixes have been made.
45+
An overview of the changes is provided at:
46+
47+
     https://docs.astropy.org/en/stable/whatsnew/1.2.html
48+
49+
Instructions for installing Astropy are provided on our
50+
`website <http://www.astropy.org>`__, and extensive documentation can be
51+
found at:
52+
53+
     https://docs.astropy.org
54+
55+
If you make use of the `Anaconda Python
56+
Distribution <https://www.continuum.io/downloads>`__, you can update to
57+
Astropy v1.2 with:
58+
59+
::
60+
61+
conda update astropy
62+
63+
Whereas if you usually use pip, you can do:
64+
65+
::
66+
67+
pip install astropy --upgrade
68+
69+
Note that if you install now you should get Astropy v1.2.1, as some
70+
last-minute bug fixes were found and fixed after the v1.2 release was
71+
created but before this announcement.
72+
73+
Please report any issues, or request new features via our GitHub
74+
repository:
75+
76+
     https://github.com/astropy/astropy/issues
77+
78+
Over 190 developers have contributed code to Astropy so far, and you can
79+
find out more about the team behind Astropy here:
80+
81+
     http://www.astropy.org/team.html
82+
83+
As a reminder, Astropy v1.0 (our long term support release) will
84+
continue to be supported with bug fixes until Feb 19th 2017, so if you
85+
need to use Astropy in a very stable environment, you may want to
86+
consider staying on the v1.0.x set of releases (for which we have
87+
recently released v1.0.10).
88+
89+
If you use Astropy directly for your work, or as a dependency to another
90+
package, please remember to include the following acknowledgment at the
91+
end of papers:
92+
93+
This research made use of Astropy, a community-developed core Python
94+
package for Astronomy (Astropy Collaboration, 2013).
95+
96+
where (Astropy Collaboration, 2013) is a citation to the `Astropy
97+
Paper <https://doi.org/10.1051/0004-6361/201322068>`__
98+
(`ADS <http://adsabs.harvard.edu/abs/2013A%26A...558A..33A>`__ -
99+
`BibTeX <http://adsabs.harvard.edu/cgi-bin/nph-bib_query?bibcode=2013A%26A...558A..33A&data_type=BIBTEX&db_key=AST&nocookieset=1>`__).
100+
101+
Please feel free to forward this announcement to anyone you think might
102+
be interested in this release.
103+
104+
We hope that you enjoy using Astropy as much as we enjoyed developing
105+
it!
106+
107+
| Erik Tollerud, Tom Robitaille, Kelle Cruz, and Tom Aldcroft
108+
| on behalf of The Astropy Collaboration

0 commit comments

Comments
 (0)