File tree Expand file tree Collapse file tree 3 files changed +14
-16
lines changed Expand file tree Collapse file tree 3 files changed +14
-16
lines changed Original file line number Diff line number Diff line change 9
9
paths-ignore :
10
10
- ' doc/**'
11
11
- ' *.rst'
12
- release :
13
- types : [published]
14
12
15
13
env :
16
14
CIBW_BEFORE_BUILD : " python -m pip install numpy --only-binary=:all:"
@@ -64,27 +62,24 @@ jobs:
64
62
path : dist/*.tar.gz
65
63
66
64
release :
65
+ if : startsWith(github.ref, 'refs/tags/')
66
+ needs : [wheels, sdist]
67
67
runs-on : ubuntu-latest
68
68
steps :
69
69
- uses : actions/checkout@v2
70
70
- uses : softprops/action-gh-release@v1
71
- if : startsWith(github.ref, 'refs/tags/')
72
71
with :
73
72
draft : True
74
73
body : " [See changelog on RTD](https://iminuit.readthedocs.io/en/stable/changelog.html)"
75
74
env :
76
75
GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }}
77
76
78
- upload :
79
- needs : [wheels, sdist, release]
80
- runs-on : ubuntu-latest
81
- steps :
82
- - uses : actions/download-artifact@v2
83
- with :
84
- name : artifact
85
- path : dist
77
+ - uses : actions/download-artifact@v2
78
+ with :
79
+ name : artifact
80
+ path : dist
86
81
87
- - uses : pypa/gh-action-pypi-publish@master
88
- with :
89
- user : __token__
90
- password : ${{secrets.pypi_password}}
82
+ - uses : pypa/gh-action-pypi-publish@master
83
+ with :
84
+ user : __token__
85
+ password : ${{secrets.pypi_password}}
Original file line number Diff line number Diff line change 5
5
Changelog
6
6
=========
7
7
8
+ 2.5.1
9
+ -----
10
+
8
11
2.5.0 (April 30, 2021)
9
12
----------------------
10
13
Original file line number Diff line number Diff line change 7
7
# - Increase MAINTENANCE when fixing bugs without adding features
8
8
# - During development, add suffix .devN with N >= 0
9
9
# - For release candidates, add suffix .rcN with N >= 0
10
- iminuit_version = "2.5.0 "
10
+ iminuit_version = "2.5.1 "
11
11
12
12
# We list the corresponding ROOT version of the C++ Minuit2 library here
13
13
root_version = "v6-23-01-RF-binSampling-685-ga642cc22e3"
You can’t perform that action at this time.
0 commit comments