Skip to content

Commit 3cb9aa5

Browse files
authored
Merge pull request #36 from astro-informatics/bump/1.3.3
issue in action to deploy to bintray
2 parents f0a183c + bbe0127 commit 3cb9aa5

File tree

8 files changed

+16
-16
lines changed

8 files changed

+16
-16
lines changed

.github/workflows/conan.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ jobs:
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"
@@ -54,4 +54,4 @@ jobs:
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

.github/workflows/python.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff 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 }}

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ cmake_minimum_required(VERSION 3.12)
22

33
project(
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)

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
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

conanfile.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
class 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"

makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# ======== COMPILER ========
22

33
CC = 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

setup.cfg

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[bumpversion]
2-
current_version = 1.3.2
2+
current_version = 1.3.3
33
commit = False
44
tag = False
55
parse = (?P<major>\d+)\.(?P<minor>\d+)\.(?P<patch>\d+)(rc(?P<rc>\d+))?
@@ -24,12 +24,12 @@ serialize =
2424
[flake8]
2525
max-line-length = 88
2626
extend-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]
3535
max-line-length = 88

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727

2828
setup(
2929
name="pyssht",
30-
version="1.3.2",
30+
version="1.3.3",
3131
author=[
3232
"J. D. McEwen",
3333
"C. R. G. Wallis",

0 commit comments

Comments
 (0)