File tree Expand file tree Collapse file tree 5 files changed +6
-6
lines changed
Expand file tree Collapse file tree 5 files changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -91,14 +91,14 @@ jobs:
9191 mv source-distribution/*.tar.gz wheel-*/*.whl dist
9292
9393 - name : Publish distribution 📦 to Test PyPI
94- if : ${{ github.ref != 'refs/tags/v1.5.1 ' }}
94+ if : ${{ github.ref != 'refs/tags/v1.5.2 ' }}
9595 uses : pypa/gh-action-pypi-publish@master
9696 with :
9797 password : ${{ secrets.TEST_PYPI_TOKEN }}
9898 repository_url : https://test.pypi.org/legacy/
9999
100100 - name : Publish distribution 📦 to PyPI
101- if : ${{ github.ref == 'refs/tags/v1.5.1 ' }}
101+ if : ${{ github.ref == 'refs/tags/v1.5.2 ' }}
102102 uses : pypa/gh-action-pypi-publish@master
103103 with :
104104 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.5.1 "
5+ VERSION "1.5.2 "
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 11# ======== COMPILER ========
22
33CC = gcc
4- OPT = -std=c99 -pedantic -Wall -O3 -fopenmp -DSSHT_VERSION=\"1.5.1 \" -DSSHT_BUILD=\"` git rev-parse HEAD ` \"
4+ OPT = -std=c99 -pedantic -Wall -O3 -fopenmp -DSSHT_VERSION=\"1.5.2 \" -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.5.1
2+ current_version = 1.5.2
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.5.1 " ,
30+ version = "1.5.2 " ,
3131 author = [
3232 "J. D. McEwen" ,
3333 "C. R. G. Wallis" ,
You can’t perform that action at this time.
0 commit comments