File tree Expand file tree Collapse file tree 9 files changed +18
-20
lines changed Expand file tree Collapse file tree 9 files changed +18
-20
lines changed 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.4 ' }}
122+ if : ${{ github.ref != 'refs/tags/v1.3.5 ' }}
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.4 ' }}
129+ if : ${{ github.ref == 'refs/tags/v1.3.5 ' }}
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 11cmake_minimum_required (VERSION 3.12)
22project (
33 so3
4- VERSION "1.3.4 "
4+ VERSION "1.3.5 "
55 DESCRIPTION "Fast and exact Wigner transforms"
66 HOMEPAGE_URL "http://astro-informatics.github.io/so3/"
77 LANGUAGES C)
88
99option (conan_deps "Download ssht using conan" ON )
10- if (conan_deps AND download_ssht)
11- message (
12- FATAL_ERROR "conan_deps and download_ssht options are mutually exclusive." )
13- endif ()
1410
1511if (NOT CMAKE_BUILD_TYPE )
1612 set (CMAKE_BUILD_TYPE "Debug" )
@@ -40,13 +36,13 @@ if(BUILD_TESTING)
4036 add_subdirectory (tests)
4137endif ()
4238
43- if (NOT SKBUILD AND NOT CONAN_EXPORTED)
44- include ("${PROJECT_SOURCE_DIR} /cmake/exporting.cmake" )
45- elseif (NOT CONAN_EXPORTED)
39+ if (SKBUILD)
4640 find_package (PythonExtensions REQUIRED)
4741 find_package (Cython REQUIRED)
4842 find_package (NumPy REQUIRED)
4943 add_subdirectory (src/so3)
44+ elseif (NOT CONAN_EXPORTED)
45+ include ("${PROJECT_SOURCE_DIR} /cmake/exporting.cmake" )
5046endif ()
5147
5248# only run documentation if this is not a sub-project
Original file line number Diff line number Diff line change 22[ docs-img ] : https://img.shields.io/badge/docs-stable-blue.svg
33[ docs-url ] : http://astro-informatics.github.io/so3/
44[ conan-img ] : https://img.shields.io/badge/ConanCenter-C%20Package-red.svg
5- [ conan-url ] : https://conan.io/center/so3
5+ [ conan-url ] : https://conan.io/center/astro-informatics- so3
66[ pypi-img ] : https://badge.fury.io/py/so3.svg
77[ pypi-url ] : https://badge.fury.io/py/so3
88[ codefactor-img ] : https://www.codefactor.io/repository/github/astro-informatics/so3/badge/main
Original file line number Diff line number Diff line change @@ -20,6 +20,6 @@ conan_cmake_install(
2020 BUILD
2121 missing
2222 REMOTE
23- conan-center
23+ conancenter
2424 SETTINGS
2525 ${settings} )
Original file line number Diff line number Diff line change @@ -6,7 +6,7 @@ include(CMakeFindDependencyMacro)
66find_dependency(FFTW3 REQUIRED)
77find_dependency(Ssht REQUIRED)
88
9- include ("${CMAKE_CURRENT_LIST_DIR} /sshtTargets .cmake" )
10- set (SO3_LIBRARIES so3::so3)
9+ include ("${CMAKE_CURRENT_LIST_DIR} /astro-informatics-so3Targets .cmake" )
10+ set (SO3_LIBRARIES astro-informatics- so3::astro-informatics- so3)
1111
1212check_required_components(SO3)
Original file line number Diff line number Diff line change @@ -47,8 +47,10 @@ <h1 class="title">so3</h1>
4747 < h2 > News</ h2 >
4848
4949 < ul >
50- < li > < strong > April 2021</ strong > < br />
51- Release of SO3 v1.3.3 (< a href ="https://conan.io/center/so3 "> conan-center</ a > release)
50+ < li > < strong > Oct 2021</ strong > < br />
51+ Release of SO3 v1.3.5
52+ < li > < strong > May 2021</ strong > < br />
53+ Release of SO3 v1.3.4 (< a href ="https://conan.io/center/astro-informatics-so3 "> conan-center</ a > release)
5254 < li > < strong > October 2020</ strong > < br />
5355 Release of SO3 v1.3.0
5456 < li > < strong > September 2020</ strong > < br />
@@ -78,7 +80,7 @@ <h2>News</h2>
7880 < img src ="https://img.shields.io/badge/docs-stable-blue.svg ">
7981 </ a >
8082
81- < a href ="https://conan.io/center/so3 ">
83+ < a href ="https://conan.io/center/astro-informatics- so3 ">
8284 < img src ="https://img.shields.io/badge/ConanCenter-C%20Package-red.svg ">
8385 </ a >
8486
Original file line number Diff line number Diff line change 44CC = gcc
55
66# OPT = -Wall -O3 -fopenmp -DSO3_VERSION=\"0.1\" -DSO3_BUILD=\"`git rev-parse HEAD`\"
7- OPT = -Wall -g -fopenmp -DSO3_VERSION=\"1.3.4 \" -DSO3_BUILD=\"` git rev-parse HEAD ` \"
7+ OPT = -Wall -g -fopenmp -DSO3_VERSION=\"1.3.5 \" -DSO3_BUILD=\"` git rev-parse HEAD ` \"
88
99
1010# ======== LINKS ========
Original file line number Diff line number Diff line change 11[bumpversion]
2- current_version = 1.3.4
2+ current_version = 1.3.5
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 88
99setup (
1010 name = "so3" ,
11- version = "1.3.4 " ,
11+ version = "1.3.5 " ,
1212 author = "Jason McEwen" ,
1313 install_requires = ["numpy" , "scipy" ],
1414 extras_require = {
You can’t perform that action at this time.
0 commit comments