Skip to content

Commit 3d472c7

Browse files
authored
Merge pull request numpy#230 from rgommers/news
Add a News page
2 parents d4f3553 + f90d195 commit 3d472c7

File tree

4 files changed

+66
-4
lines changed

4 files changed

+66
-4
lines changed

config.yaml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,8 @@ params:
3232
# Customizable navbar. For a dropdown, add a "sublinks" list.
3333
news:
3434
title: NumPy v1.18.0
35-
content: The C-API for numpy.random defined and documented - Basic infrastructure for linking with 64-bit BLAS and LAPACK - Improved documentation
35+
content: A new C-API for numpy.random - Basic infrastructure for linking with 64-bit BLAS and LAPACK
36+
url: /news
3637

3738
shell:
3839
title: placeholder

content/en/news.md

Lines changed: 52 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,52 @@
1+
---
2+
title: News
3+
sidebar: false
4+
---
5+
6+
7+
### Season of Docs acceptance
8+
9+
_May 11, 2020_ -- NumPy got accepted as one of the mentor organizations for
10+
Google's Season of Docs program. We are excited to again get the opportunity to
11+
work with a technical writer to improve NumPy's documentation! For more
12+
details, please see
13+
[the official Season of Docs site](https://developers.google.com/season-of-docs/) and our
14+
[ideas page](https://github.com/numpy/numpy/wiki/Google-Season-of-Docs-2020-Project-Ideas).
15+
16+
17+
### NumPy 1.18.0 release
18+
19+
_Dec 22, 2019_ -- NumPy 1.18.0 is now available. After the major changes in
20+
1.17.0, this is a consolidation release. It is the last minor release that will
21+
support Python 3.5. Highlights of the release includes the addition of basic
22+
infrastructure for linking with 64-bit BLAS and LAPACK libraries, and a new C-API for ``numpy.random``.
23+
24+
Please see the [release notes](https://github.com/numpy/numpy/releases/tag/v1.18.0) for more details.
25+
26+
27+
### NumPy receives a grant from the Chan Zuckerberg Initiative
28+
29+
_Nov 15, 2019_ -- We are very pleased to announce that NumPy and OpenBLAS have received a joint grant for $195,000 from the Chan Zuckerberg Initiative.
30+
31+
This grant is for high-level documentation, website development and graphic design, governance activities and community building for NumPy, and for technical work on OpenBLAS (which is one of NumPy's key dependencies). [This blog post](https://labs.quansight.org/blog/2019/11/numpy-openblas-CZI-grant/) describes what this grant will be about and provides some background on the grant program. The full proposal is published [here](https://figshare.com/articles/Proposal_NumPy_OpenBLAS_for_Chan_Zuckerberg_Initiative_EOSS_2019_round_1/10302167). The program managers wrote a blog post titled [The Invisible Foundations of Biomedicine](https://medium.com/@cziscience/the-invisible-foundations-of-biomedicine-4ab7f8d4f5dd) about the whole program which is also well worth reading.
32+
33+
We're looking forward to what we'll be able to do with this grant. The work is planned to start quite soon, Dec 1st, and run for one year.
34+
35+
36+
## Releases
37+
38+
Here is a list of NumPy releases, with links to release notes. All bugfix
39+
releases (only the `z` changes in the `x.y.z` version number) have no new
40+
features; minor releases (the `y` increases) do.
41+
42+
- NumPy 1.18.4 ([release notes](https://github.com/numpy/numpy/releases/tag/v1.18.4)) -- _3 May 2020_.
43+
- NumPy 1.18.3 ([release notes](https://github.com/numpy/numpy/releases/tag/v1.18.3)) -- _19 Apr 2020_.
44+
- NumPy 1.18.2 ([release notes](https://github.com/numpy/numpy/releases/tag/v1.18.2)) -- _17 Mar 2020_.
45+
- NumPy 1.18.1 ([release notes](https://github.com/numpy/numpy/releases/tag/v1.18.1)) -- _6 Jan 2020_.
46+
- NumPy 1.17.5 ([release notes](https://github.com/numpy/numpy/releases/tag/v1.17.5)) -- _1 Jan 2020_.
47+
- NumPy 1.18.0 ([release notes](https://github.com/numpy/numpy/releases/tag/v1.18.0)) -- _22 Dec 2019_.
48+
- NumPy 1.17.4 ([release notes](https://github.com/numpy/numpy/releases/tag/v1.17.4)) -- _11 Nov 2019_.
49+
- NumPy 1.17.0 ([release notes](https://github.com/numpy/numpy/releases/tag/v1.17.0)) -- _26 Jul 2019_.
50+
- NumPy 1.16.0 ([release notes](https://github.com/numpy/numpy/releases/tag/v1.16.0)) -- _14 Jan 2019_.
51+
- NumPy 1.15.0 ([release notes](https://github.com/numpy/numpy/releases/tag/v1.15.0)) -- _23 Jul 2018_.
52+
- NumPy 1.14.0 ([release notes](https://github.com/numpy/numpy/releases/tag/v1.14.0)) -- _7 Jan 2018_.

layouts/partials/news.html

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,9 @@
11
{{- $news := .Site.Params.news }}
22
{{- $title := index $news "title" }}
33
{{- $content := index $news "content" }}
4+
{{- $url := index $news "url" }}
45

56
<div class="news-container">
6-
<div class="news-title">{{ $title }}</div>
7-
<div class="news-content">{{ $content }}</div>
8-
</div>
7+
<div class="news-title"> <a href="{{ $url}}"> {{ $title }} </a></div>
8+
<div class="news-content"> <a href="{{ $url}}"> {{ $content }} </a></div>
9+
</div>

static/css/news.css

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,14 @@
99
white-space: nowrap;
1010
}
1111

12+
.news-container a {
13+
color: white;
14+
}
15+
16+
.news-container a:hover {
17+
color: white;
18+
}
19+
1220
.news-title {
1321
display: flex;
1422
letter-spacing: 1.5px;

0 commit comments

Comments
 (0)