File tree Expand file tree Collapse file tree 8 files changed +16
-16
lines changed
Expand file tree Collapse file tree 8 files changed +16
-16
lines changed Original file line number Diff line number Diff line change 3434 - name : create stable package
3535 shell : bash
3636 run : |
37- if ["${{ github.ref }}" = "refs/tags/v1.3.2" ]; then
37+ if [ "${{ github.ref }}" = "refs/tags/v1.3.3" ]; then
3838 channel="stable"
3939 else
4040 channel="testing"
5454
5555 run : |
5656 conan remote add astro-informatics ${CONAN_REMOTE_URL}
57- conan upload ssht/1.3.2 -c --all -r=astro-informatics
57+ conan upload ssht/1.3.3 -c --all -r=astro-informatics
Original file line number Diff line number Diff line change @@ -119,14 +119,14 @@ jobs:
119119 mv source-distribution/*.tar.gz wheel-*/*.whl dist
120120
121121 - name : Publish distribution 📦 to Test PyPI
122- if : ${{ github.ref != 'refs/tags/v1.3.2 ' }}
122+ if : ${{ github.ref != 'refs/tags/v1.3.3 ' }}
123123 uses : pypa/gh-action-pypi-publish@master
124124 with :
125125 password : ${{ secrets.TEST_PYPI_TOKEN }}
126126 repository_url : https://test.pypi.org/legacy/
127127
128128 - name : Publish distribution 📦 to PyPI
129- if : ${{ github.ref == 'refs/tags/v1.3.2 ' }}
129+ if : ${{ github.ref == 'refs/tags/v1.3.3 ' }}
130130 uses : pypa/gh-action-pypi-publish@master
131131 with :
132132 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.2 "
5+ VERSION "1.3.3 "
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 33[ docs-img ] : https://img.shields.io/badge/docs-stable-blue.svg
44[ docs-url ] : https://astro-informatics.github.io/ssht/
55[ bintray-img ] : https://img.shields.io/bintray/v/astro-informatics/astro-informatics/ssht:astro-informatics?label=C%20package
6- [ bintray-url ] : https://bintray.com/astro-informatics/astro-informatics/ssht:astro-informatics/1.3.2 :stable/link
6+ [ bintray-url ] : https://bintray.com/astro-informatics/astro-informatics/ssht:astro-informatics/1.3.3 :stable/link
77[ pypi-img ] : https://badge.fury.io/py/pyssht.svg
88[ pypi-url ] : https://badge.fury.io/py/pyssht
99[ codefactor-img ] : https://www.codefactor.io/repository/github/astro-informatics/ssht/badge/main
Original file line number Diff line number Diff line change 33
44class SshtConan (ConanFile ):
55 name = "ssht"
6- version = "1.3.2 "
6+ version = "1.3.3 "
77 license = "GPL-3.0"
88 url = "https://github.com/astro-informatics/ssht"
99 homepage = "https://github.com/astro-informatics/ssht"
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.2 \" -DSSHT_BUILD=\"` git rev-parse HEAD ` \"
4+ OPT = -std=c99 -pedantic -Wall -O3 -fopenmp -DSSHT_VERSION=\"1.3.3 \" -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.2
2+ current_version = 1.3.3
33commit = False
44tag = False
55parse = (?P<major>\d+)\.(?P<minor>\d+)\.(?P<patch>\d+)(rc(?P<rc>\d+))?
@@ -24,12 +24,12 @@ serialize =
2424[flake8]
2525max-line-length = 88
2626extend-ignore = E203, W503
27- exclude =
28- .tox,
29- .git,
30- build,
31- __pycache__,
32- docs/,
27+ exclude =
28+ .tox,
29+ .git,
30+ build,
31+ __pycache__,
32+ docs/,
3333
3434[pycodestyle]
3535max-line-length = 88
Original file line number Diff line number Diff line change 2727
2828setup (
2929 name = "pyssht" ,
30- version = "1.3.2 " ,
30+ version = "1.3.3 " ,
3131 author = [
3232 "J. D. McEwen" ,
3333 "C. R. G. Wallis" ,
You can’t perform that action at this time.
0 commit comments