File tree Expand file tree Collapse file tree 6 files changed +8
-6
lines changed
Expand file tree Collapse file tree 6 files changed +8
-6
lines changed Original file line number Diff line number Diff line change @@ -118,14 +118,14 @@ jobs:
118118 mv source-distribution/*.tar.gz wheel-*/*.whl dist
119119
120120 - name : Publish distribution 📦 to Test PyPI
121- if : ${{ github.ref != 'refs/tags/v1.4 .0' }}
121+ if : ${{ github.ref != 'refs/tags/v1.5 .0' }}
122122 uses : pypa/gh-action-pypi-publish@master
123123 with :
124124 password : ${{ secrets.TEST_PYPI_TOKEN }}
125125 repository_url : https://test.pypi.org/legacy/
126126
127127 - name : Publish distribution 📦 to PyPI
128- if : ${{ github.ref == 'refs/tags/v1.4 .0' }}
128+ if : ${{ github.ref == 'refs/tags/v1.5 .0' }}
129129 uses : pypa/gh-action-pypi-publish@master
130130 with :
131131 password : ${{ secrets.PYPI_TOKEN }}
Original file line number Diff line number Diff line change @@ -2,7 +2,7 @@ cmake_minimum_required(VERSION 3.12)
22
33project (
44 Ssht
5- VERSION "1.4 .0"
5+ VERSION "1.5 .0"
66 DESCRIPTION "Fast and exact spin spherical harmonic transforms"
77 HOMEPAGE_URL "http://astro-informatics.github.io/ssht/"
88 LANGUAGES C)
Original file line number Diff line number Diff line change @@ -51,6 +51,8 @@ <h2>News</h2>
5151
5252 < ul >
5353
54+ < li > < strong > July 2021</ strong > < br />
55+ Release of SSHT 1.5.0 (< a href ="https://pypi.org/project/ducc0/ "> ducc0</ a > forward adjoint)
5456 < li > < strong > July 2021</ strong > < br />
5557 Release of SSHT 1.4.0 (< a href ="https://pypi.org/project/ducc0/ "> ducc0</ a > interface)
5658 < li > < strong > February 2021</ strong > < br />
Original file line number Diff line number Diff line change 11# ======== COMPILER ========
22
33CC = gcc
4- OPT = -std=c99 -pedantic -Wall -O3 -fopenmp -DSSHT_VERSION=\"1.4 .0\" -DSSHT_BUILD=\"` git rev-parse HEAD ` \"
4+ OPT = -std=c99 -pedantic -Wall -O3 -fopenmp -DSSHT_VERSION=\"1.5 .0\" -DSSHT_BUILD=\"` git rev-parse HEAD ` \"
55# OPT = -Wall -g -fopenmp -DSSHT_VERSION=\"1.0b1\" -DSSHT_BUILD=\"`git rev-parse HEAD`\"
66
77
Original file line number Diff line number Diff line change 11[bumpversion]
2- current_version = 1.4 .0
2+ current_version = 1.5 .0
33commit = False
44tag = False
55parse = (?P<major>\d+)\.(?P<minor>\d+)\.(?P<patch>\d+)(rc(?P<rc>\d+))?
Original file line number Diff line number Diff line change 2727
2828setup (
2929 name = "pyssht" ,
30- version = "1.4 .0" ,
30+ version = "1.5 .0" ,
3131 author = [
3232 "J. D. McEwen" ,
3333 "C. R. G. Wallis" ,
You can’t perform that action at this time.
0 commit comments