File tree Expand file tree Collapse file tree 7 files changed +14
-6
lines changed
Expand file tree Collapse file tree 7 files changed +14
-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.3.8 ' }}
121+ if : ${{ github.ref != 'refs/tags/v1.4.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.3.8 ' }}
128+ if : ${{ github.ref == 'refs/tags/v1.4.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.3.8 "
5+ VERSION "1.4.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 @@ -22,6 +22,9 @@ The **SSHT** code provides functionality to perform fast and exact
2222spin spherical harmonic transforms based on the sampling theorem on the
2323sphere derived in <a href =" http://www.jasonmcewen.org/publication/mcewen-fssht/ " >McEwen & Wiaux (2011)</a >.
2424
25+ ** SSHT** can also interface with [ ducc0] ( https://pypi.org/project/ducc0/ ) and
26+ * use it as a backend for the forward, inverse and inverse adjoint transforms.
27+
2528
2629## INSTALLATION
2730
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.4.0 (< a href ="https://pypi.org/project/ducc0/ "> ducc0</ a > interface)
5456 < li > < strong > February 2021</ strong > < br />
5557 Release of SSHT 1.3.7 (< a href ="https://conan.io/center/ssht "> conan-center</ a > release)
5658 < li > < strong > October 2020</ strong > < br />
@@ -126,6 +128,9 @@ <h2>Description</h2>
126128 < a href ="http://www.jasonmcewen.org/publication/mcewen-fssht/ "> McEwen & Wiaux (2011)</ a > .
127129 </ p >
128130
131+ < p > < strong > SSHT</ strong > can also interface with < a href ="https://pypi.org/project/ducc0/ "> ducc0</ a > and
132+ use it as a backend for the forward, inverse and inverse adjoint transforms.
133+
129134 < p >
130135 In some applications adjoint forward and inverse spherical harmonic
131136 transforms are also required (for example, when solving convex
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.3.8 \" -DSSHT_BUILD=\"` git rev-parse HEAD ` \"
4+ OPT = -std=c99 -pedantic -Wall -O3 -fopenmp -DSSHT_VERSION=\"1.4.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.3.8
2+ current_version = 1.4.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.3.8 " ,
30+ version = "1.4.0 " ,
3131 author = [
3232 "J. D. McEwen" ,
3333 "C. R. G. Wallis" ,
You can’t perform that action at this time.
0 commit comments