File tree Expand file tree Collapse file tree 7 files changed +35
-50
lines changed Expand file tree Collapse file tree 7 files changed +35
-50
lines changed Original file line number Diff line number Diff line change 30
30
shell : bash -l {0}
31
31
run : unzip -l dist/*.whl | grep -q py.typed
32
32
33
+ build_conda :
34
+ runs-on : ubuntu-latest
35
+ timeout-minutes : 20
36
+ needs : ['build']
37
+ continue-on-error : true
38
+
39
+ if : startsWith(github.head_ref, 'release-')
40
+
41
+ steps :
42
+ - uses : actions/checkout@v3
43
+ - uses : actions/checkout@v3
44
+ with :
45
+ repository : conda-forge/emsarray-feedstock
46
+ path : emsarray-feedstock
47
+
48
+ - uses : ./.github/actions/environment
49
+ with :
50
+ python-version : ${{ env.python-version }}
51
+ package-artifact-name : ${{ needs.build.outputs.artifact-name }}
52
+
53
+ - run : |
54
+ conda install conda-build
55
+ ./scripts/build-local-conda-package.sh
56
+
33
57
test :
34
58
name : python ${{ matrix.python-version }}, ${{ matrix.experimental && 'latest' || 'pinned' }} dependencies
35
59
runs-on : ubuntu-latest
Load Diff This file was deleted.
Original file line number Diff line number Diff line change 1
1
cff-version : 1.2.0
2
2
title : emsarray
3
- version : 0.6.0
4
- date-released : 2023-09-25
3
+ version : 0.6.1
4
+ date-released : 2023-09-27
5
5
type : software
6
6
authors :
7
7
- given-names : Tim
Original file line number Diff line number Diff line change @@ -25,8 +25,7 @@ Push this branch and make a pull request on Github.
25
25
26
26
$ ./scripts/release.py pre 1.2.0
27
27
28
- Manually run the 'Prerelease checks' workflow for this branch in the 'Actions' tab on Github.
29
- This will check that a conda package can be built from the Python package tarball.
28
+ Merge this pull request once all the CI tests pass.
30
29
31
30
Build and publish packages
32
31
==========================
Original file line number Diff line number Diff line change 1
- =============================
2
- Next release (in development)
3
- =============================
1
+ =====
2
+ 0.6.1
3
+ =====
4
+
5
+ Released on 2023-09-27
4
6
5
7
* Fix transect plot title and units.
6
8
All attributes were being dropped accidentally in `prepare_data_array_for_transect() `.
Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ Release notes
4
4
5
5
.. toctree ::
6
6
7
- development
7
+ 0.6.1
8
8
0.6.0
9
9
0.5.0
10
10
0.4.3
Original file line number Diff line number Diff line change 1
1
[metadata]
2
2
name = emsarray
3
3
description = xarray extension that supports multiple geometry conventions
4
- version = 0.6.0
4
+ version = 0.6.1
5
5
long_description = file: README.md
6
6
long_description_content_type = text/markdown
7
7
author = " Coastal Environmental Modelling team, Oceans and Atmosphere, CSIRO"
@@ -11,7 +11,7 @@ python_requires = ">=3.9"
11
11
12
12
project_urls =
13
13
Documentation = https://emsarray.readthedocs.io/
14
- Release notes = https://emsarray.readthedocs.io/en/stable/releases/0.6.0 /
14
+ Release notes = https://emsarray.readthedocs.io/en/stable/releases/0.6.1 /
15
15
Source = https://github.com/csiro-coasts/emsarray/
16
16
17
17
[options]
You can’t perform that action at this time.
0 commit comments