File tree 5 files changed +8
-8
lines changed
5 files changed +8
-8
lines changed Original file line number Diff line number Diff line change @@ -106,11 +106,11 @@ jobs:
106
106
CIBW_BUILD_FRONTEND : " build[uv]"
107
107
108
108
- name : Publish distribution 📦 to Test PyPI
109
- if : ${{ github.ref != 'refs/tags/v1.5.2 ' }}
109
+ if : ${{ github.ref != 'refs/tags/v1.5.3 ' }}
110
110
run : " uv publish --publish-url https://test.pypi.org/legacy/ wheelhouse/*.whl"
111
111
112
112
- name : Publish distribution 📦 to PyPI
113
- if : ${{ github.ref == 'refs/tags/v1.5.2 ' }}
113
+ if : ${{ github.ref == 'refs/tags/v1.5.3 ' }}
114
114
run : " uv publish wheelhouse/*.whl"
115
115
116
116
publish_sdist :
@@ -130,9 +130,9 @@ jobs:
130
130
run : uv build --sdist
131
131
132
132
- name : Publish distribution 📦 to Test PyPI
133
- if : ${{ github.ref != 'refs/tags/v1.5.2 ' }}
133
+ if : ${{ github.ref != 'refs/tags/v1.5.3 ' }}
134
134
run : " uv publish --publish-url https://test.pypi.org/legacy/ dist/*.tar.gz"
135
135
136
136
- name : Publish distribution 📦 to PyPI
137
- if : ${{ github.ref == 'refs/tags/v1.5.2 ' }}
137
+ if : ${{ github.ref == 'refs/tags/v1.5.3 ' }}
138
138
run : " uv publish dist/*.tar.gz"
Original file line number Diff line number Diff line change 6
6
endif ()
7
7
project (
8
8
${project_name}
9
- VERSION "1.5.2 "
9
+ VERSION "1.5.3 "
10
10
DESCRIPTION "Fast and exact spin spherical harmonic transforms"
11
11
HOMEPAGE_URL "http://astro-informatics.github.io/ssht/"
12
12
LANGUAGES C)
Original file line number Diff line number Diff line change 1
1
# ======== COMPILER ========
2
2
3
3
CC = gcc
4
- OPT = -std=c99 -pedantic -Wall -O3 -fopenmp -DSSHT_VERSION=\"1.5.2 \" -DSSHT_BUILD=\"` git rev-parse HEAD ` \"
4
+ OPT = -std=c99 -pedantic -Wall -O3 -fopenmp -DSSHT_VERSION=\"1.5.3 \" -DSSHT_BUILD=\"` git rev-parse HEAD ` \"
5
5
# OPT = -Wall -g -fopenmp -DSSHT_VERSION=\"1.0b1\" -DSSHT_BUILD=\"`git rev-parse HEAD`\"
6
6
7
7
Original file line number Diff line number Diff line change 1
1
[project ]
2
2
name = " pyssht"
3
- version = " 1.5.2 "
3
+ version = " 1.5.3rc1 "
4
4
authors = [
5
5
{name =" J. D. McEwen" },
6
6
{name =" C. R. G. Wallis" },
Original file line number Diff line number Diff line change 1
1
[bumpversion]
2
- current_version = 1.5.2
2
+ current_version = 1.5.3
3
3
commit = False
4
4
tag = False
5
5
parse = (?P<major>\d+)\.(?P<minor>\d+)\.(?P<patch>\d+)(rc(?P<rc>\d+))?
You can’t perform that action at this time.
0 commit comments