Skip to content

Commit 673b7b4

Browse files
authored
Release 0.7.0 (#241)
* Bump "upcoming release" to 0.7.0 * Build sdist and upload to pypi * Add Czaki and myself; fix Trevor's link
1 parent aa46cfe commit 673b7b4

File tree

3 files changed

+48
-3
lines changed

3 files changed

+48
-3
lines changed

.github/workflows/wheel.yaml

Lines changed: 34 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -37,3 +37,37 @@ jobs:
3737
with:
3838
name: wheels
3939
path: ./wheelhouse
40+
41+
build_sdist:
42+
name: Build source distribution
43+
runs-on: ubuntu-latest
44+
steps:
45+
- uses: actions/checkout@v2
46+
47+
- uses: actions/setup-python@v2
48+
name: Install Python
49+
with:
50+
python-version: '3.7'
51+
52+
- name: Build sdist
53+
run: python setup.py sdist
54+
55+
- uses: actions/upload-artifact@v2
56+
with:
57+
path: dist/*.tar.gz
58+
59+
upload_pypi:
60+
needs: [build_wheels, build_sdist]
61+
runs-on: ubuntu-latest
62+
if: github.event_name == 'push' && startsWith(github.event.ref, 'refs/tags/v')
63+
steps:
64+
- uses: actions/download-artifact@v2
65+
with:
66+
name: artifact
67+
path: dist
68+
69+
- uses: pypa/gh-action-pypi-publish@master
70+
with:
71+
user: __token__
72+
password: ${{ secrets.pypi_password }}
73+
# To test: repository_url: https://test.pypi.org/legacy/

docs/index.rst

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -91,6 +91,9 @@ documentation, code reviews, comments and/or ideas:
9191
* :user:`John Kirkham <jakirkham>`
9292
* :user:`Alistair Miles <alimanfoo>`
9393
* :user:`Jeff Reback <jreback>`
94+
* :user:`Trevor Manz <manzt>`
95+
* :user:`Grzegorz Bokota <Czaki>`
96+
* :user:`Josh Moore <joshmoore>`
9497

9598
Numcodecs bundles the `c-blosc <https://github.com/Blosc/c-blosc>`_ library.
9699

docs/release.rst

Lines changed: 11 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,19 @@
11
Release notes
22
=============
33

4-
Upcoming Release
5-
----------------
4+
.. _release_0.7.0:
5+
6+
0.7.0
7+
-----
8+
9+
* Automatically release to PyPI.
10+
By :user:`Josh Moore <joshmoore>`, :issue:`241`.
11+
12+
* Build wheels on github actions.
13+
By :user:`Grzegorz Bokota <Czaki>`, :issue:`224`.
614

715
* Add Base64 codec.
8-
By :user: `Trevor Manz <manzt>`, :issue: `176`.
16+
By :user:`Trevor Manz <manzt>`, :issue:`176`.
917

1018
* Add partial decompression of Blosc compressed arrays.
1119
By :user:`Andrew Fulton <andrewfulton9>`, :issue:`235`.

0 commit comments

Comments
 (0)