Skip to content

Commit ebb22c6

Browse files
authored
SO3 compiles against oldest possible numpy (#23)
* SO3 compiles against oldest possible numpy See astro-informatics/ssht#47 * Bump to version 1.3.2
1 parent 1acac9a commit ebb22c6

File tree

9 files changed

+11
-11
lines changed

9 files changed

+11
-11
lines changed

.github/workflows/conan.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ jobs:
3636
- name: create stable or testing package
3737
shell: bash
3838
run: |
39-
if [ "${{ github.ref }}" = "refs/tags/v1.3.1" ]; then
39+
if [ "${{ github.ref }}" = "refs/tags/v1.3.2" ]; then
4040
channel="stable"
4141
else
4242
channel="testing"
@@ -53,4 +53,4 @@ jobs:
5353
CONAN_PASSWORD: ${{secrets.BINTRAY_TOKEN}}
5454
CONAN_LOGIN_USERNAME: astroinformaticsci
5555
CONAN_REMOTE_URL: https://api.bintray.com/conan/astro-informatics/astro-informatics
56-
run: conan upload so3/1.3.1 -c --all -r=astro-informatics
56+
run: conan upload so3/1.3.2 -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.1' }}
122+
if: ${{ github.ref != 'refs/tags/v1.3.2' }}
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.1' }}
129+
if: ${{ github.ref == 'refs/tags/v1.3.2' }}
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
@@ -1,7 +1,7 @@
11
cmake_minimum_required(VERSION 3.12)
22
project(
33
so3
4-
VERSION "1.3.1"
4+
VERSION "1.3.2"
55
DESCRIPTION "Fast and exact Wigner transforms"
66
HOMEPAGE_URL "http://astro-informatics.github.io/so3/"
77
LANGUAGES C)

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
[docs-img]: https://img.shields.io/badge/docs-stable-blue.svg
33
[docs-url]: http://astro-informatics.github.io/so3/
44
[bintray-img]: https://img.shields.io/bintray/v/astro-informatics/astro-informatics/so3:astro-informatics?label=C%20package
5-
[bintray-url]: https://bintray.com/astro-informatics/astro-informatics/so3:astro-informatics/1.3.1:stable/link
5+
[bintray-url]: https://bintray.com/astro-informatics/astro-informatics/so3:astro-informatics/1.3.2:stable/link
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

conanfile.py

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

44
class So3Conan(ConanFile):
55
name = "so3"
6-
version = "1.3.1"
6+
version = "1.3.2"
77
license = "GPL-3"
88
url = "https://github.com/astro-informatics/so3"
99
homepage = "https://github.com/astro-informatics/so3"

makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
CC = 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.1\" -DSO3_BUILD=\"`git rev-parse HEAD`\"
7+
OPT = -Wall -g -fopenmp -DSO3_VERSION=\"1.3.2\" -DSO3_BUILD=\"`git rev-parse HEAD`\"
88

99

1010
# ======== LINKS ========

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[build-system]
22
requires = [
33
"setuptools", "wheel", "scikit-build", "cmake", "ninja", "cython",
4-
"numpy", "conan"
4+
"oldest-supported-numpy", "conan"
55
]
66

77
[tool.isort]

setup.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[bumpversion]
2-
current_version = 1.3.1
2+
current_version = 1.3.2
33
commit = False
44
tag = False
55
parse = (?P<major>\d+)\.(?P<minor>\d+)\.(?P<patch>\d+)(rc(?P<rc>\d+))?

setup.py

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

55
setup(
66
name="so3",
7-
version="1.3.1",
7+
version="1.3.2",
88
author="Jason McEwen",
99
install_requires=["numpy", "cython", "scipy"],
1010
extras_require={

0 commit comments

Comments
 (0)