File tree Expand file tree Collapse file tree 11 files changed +16
-49
lines changed
Expand file tree Collapse file tree 11 files changed +16
-49
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.3 " ]; then
37+ if [ "${{ github.ref }}" = "refs/tags/v1.3.4 " ]; 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.3 -c --all -r=astro-informatics
57+ conan upload ssht/1.3.4 -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.3 ' }}
122+ if : ${{ github.ref != 'refs/tags/v1.3.4 ' }}
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.3 ' }}
129+ if : ${{ github.ref == 'refs/tags/v1.3.4 ' }}
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,13 +2,12 @@ cmake_minimum_required(VERSION 3.12)
22
33project (
44 Ssht
5- VERSION "1.3.3 "
5+ VERSION "1.3.4 "
66 DESCRIPTION "Fast and exact spin spherical harmonic transforms"
77 HOMEPAGE_URL "http://astro-informatics.github.io/ssht/"
88 LANGUAGES C)
99
1010option (tests "Enable testing" ON )
11- option (python "Creates python package only" OFF )
1211option (conan_deps "Download dependencies using conan" OFF )
1312if (NOT WIN32 )
1413 option (fPIC "Compile with fPIC" ON )
@@ -36,12 +35,9 @@ if(tests)
3635 add_subdirectory (tests)
3736endif ()
3837
39- if (NOT python )
38+ if (NOT SKBUILD )
4039 include ("exporting" )
4140else ()
42- include ("python-setup" )
43- find_python()
44- setup_skbuild()
4541 find_package (PythonExtensions REQUIRED)
4642 find_package (Cython REQUIRED)
4743 find_package (NumPy REQUIRED)
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.3 :stable/link
6+ [ bintray-url ] : https://bintray.com/astro-informatics/astro-informatics/ssht:astro-informatics/1.3.4 :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
Load Diff This file was deleted.
Original file line number Diff line number Diff line change 33
44class SshtConan (ConanFile ):
55 name = "ssht"
6- version = "1.3.3 "
6+ version = "1.3.4 "
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.3 \" -DSSHT_BUILD=\"` git rev-parse HEAD ` \"
4+ OPT = -std=c99 -pedantic -Wall -O3 -fopenmp -DSSHT_VERSION=\"1.3.4 \" -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.3
2+ current_version = 1.3.4
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 33from skbuild import setup
44
55cmake_args = [
6- "-Dpython:BOOL=ON" ,
76 "-Dtests:BOOL=OFF" ,
87 "-Dconan_deps=ON" ,
98 "-DfPIC=ON" ,
2726
2827setup (
2928 name = "pyssht" ,
30- version = "1.3.3 " ,
29+ version = "1.3.4 " ,
3130 author = [
3231 "J. D. McEwen" ,
3332 "C. R. G. Wallis" ,
Original file line number Diff line number Diff line change @@ -14,7 +14,7 @@ if(fPIC)
1414 set_target_properties (ssht PROPERTIES POSITION_INDEPENDENT_CODE TRUE )
1515endif ()
1616
17- if (NOT python )
17+ if (NOT SKBUILD )
1818 install (
1919 TARGETS ssht
2020 EXPORT SshtTargets
You can’t perform that action at this time.
0 commit comments