Commit 5a00e26 1 parent 398d5f1 commit 5a00e26 Copy full SHA for 5a00e26
File tree 4 files changed +15
-9
lines changed
4 files changed +15
-9
lines changed Original file line number Diff line number Diff line change 25
25
fetch-depth : 0
26
26
- uses : actions/setup-python@v5
27
27
with :
28
- python-version : ' 3.12'
28
+ python-version : " 3.12"
29
29
30
30
- if : ${{ github.ref == 'refs/heads/main' }}
31
31
run : |
@@ -94,16 +94,18 @@ jobs:
94
94
path : dist/*.tar.gz
95
95
96
96
upload :
97
+ if : ${{ github.ref == 'refs/heads/main' }}
97
98
needs : [wheels, sdist]
98
99
runs-on : ubuntu-latest
100
+
99
101
environment :
100
102
name : pypi
101
103
url : https://pypi.org/project/iminuit/
102
104
103
105
permissions :
104
106
id-token : write
105
107
attestations : write
106
- if : ${{ github.ref == 'refs/heads/main' }}
108
+
107
109
steps :
108
110
- uses : actions/download-artifact@v4
109
111
with :
@@ -116,15 +118,10 @@ jobs:
116
118
with :
117
119
subject-path : " dist/iminuit-*"
118
120
119
- - uses : pypa/gh-action-pypi-publish@release/v1
120
- with :
121
- user : __token__
122
- password : ${{secrets.pypi_password}}
123
-
124
121
release :
122
+ if : ${{ github.ref == 'refs/heads/main' }}
125
123
needs : [release_check, upload]
126
124
runs-on : ubuntu-latest
127
- if : ${{ github.ref == 'refs/heads/main' }}
128
125
steps :
129
126
- uses : actions/checkout@v4
130
127
- uses : softprops/action-gh-release@v2
Original file line number Diff line number Diff line change 5
5
Changelog
6
6
=========
7
7
8
+ 2.30.2 (October 12, 2024)
9
+ -------------------------
10
+ - Fix docs (`#1052 <https://github.com/scikit-hep/iminuit/pull/1052 >`_)
11
+ - Fix: use old license text (`#1050 <https://github.com/scikit-hep/iminuit/pull/1050 >`_)
12
+ - Chore: some minor updates (`#1051 <https://github.com/scikit-hep/iminuit/pull/1051 >`_)
13
+ - Ci: use official gha for uv (`#1048 <https://github.com/scikit-hep/iminuit/pull/1048 >`_)
14
+
8
15
2.30.1 (October 08, 2024)
9
16
-------------------------
10
17
- Ci: add 3.13 wheels (`#1047 <https://github.com/scikit-hep/iminuit/pull/1047 >`_)
Original file line number Diff line number Diff line change 60
60
for x in git_log :
61
61
if x .startswith ("[pre-commit.ci]" ):
62
62
continue
63
+ if x .lower ().startswith ("bump actions" ):
64
+ continue
63
65
x = re .sub (
64
66
"#([0-9]+)" , r"`#\1 <https://github.com/scikit-hep/iminuit/pull/\1>`_" , x
65
67
)
Original file line number Diff line number Diff line change @@ -5,7 +5,7 @@ build-backend = "scikit_build_core.build"
5
5
[project ]
6
6
name = " iminuit"
7
7
description = " Jupyter-friendly Python frontend for MINUIT2 in C++"
8
- version = " 2.30.1 "
8
+ version = " 2.30.2 "
9
9
maintainers = [{ name = " Hans Dembinski" , email = " hans.dembinski@gmail.com" }]
10
10
readme = " README.rst"
11
11
requires-python = " >=3.9"
You can’t perform that action at this time.
0 commit comments