Skip to content

Commit 0ca8957

Browse files
committed
Pin cmake version
1 parent 4ec09b8 commit 0ca8957

File tree

7 files changed

+9
-8
lines changed

7 files changed

+9
-8
lines changed

.github/workflows/python.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -92,14 +92,14 @@ jobs:
9292
mv source-distribution/*.tar.gz wheel-*/*.whl dist
9393
9494
- name: Publish distribution 📦 to Test PyPI
95-
if: ${{ github.ref != 'refs/tags/v2.2.5' }}
95+
if: ${{ github.ref != 'refs/tags/v2.2.6' }}
9696
uses: pypa/gh-action-pypi-publish@release/v1
9797
with:
9898
password: ${{ secrets.TEST_PYPI_TOKEN }}
9999
repository_url: https://test.pypi.org/legacy/
100100

101101
- name: Publish distribution 📦 to PyPI
102-
if: ${{ github.ref == 'refs/tags/v2.2.5' }}
102+
if: ${{ github.ref == 'refs/tags/v2.2.6' }}
103103
uses: pypa/gh-action-pypi-publish@release/v1
104104
with:
105105
password: ${{ secrets.PYPI_TOKEN }}

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,3 +29,4 @@ dist/
2929
MANIFEST
3030
.clangd/
3131
compile_commands.json
32+
/_skbuild/

CMakeLists.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
1-
cmake_minimum_required(VERSION 3.12...4.0)
1+
cmake_minimum_required(VERSION 3.12...3.26)
22

33
project(
44
s2let
5-
VERSION "2.2.5"
5+
VERSION "2.2.6"
66
DESCRIPTION "Fast wavelets on the sphere"
77
HOMEPAGE_URL "http://astro-informatics.github.io/s2let/"
88
LANGUAGES C)

makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ UNAME := $(shell uname)
2727

2828
# Compilers and options for C
2929
CC = gcc
30-
OPT = -Wall -g -fPIC -fopenmp -DS2LET_VERSION=\"2.2.5\" -DS2LET_BUILD=\"`git rev-parse HEAD`\"
30+
OPT = -Wall -g -fPIC -fopenmp -DS2LET_VERSION=\"2.2.6\" -DS2LET_BUILD=\"`git rev-parse HEAD`\"
3131

3232
# Compilers and options for Fortran
3333
FCC = gfortran

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 = 2.2.5
2+
current_version = 2.2.6
33
commit = False
44
tag = False
55

setup.py

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

2323
setup(
2424
name="pys2let",
25-
version="2.2.5",
25+
version="2.2.6",
2626
author=["Boris Leistedt", "Martin Büttner", "Jennifer Chan", "Jason McEwen"],
2727
install_requires=["numpy"],
2828
extras_require={

src/doxygen.config

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ PROJECT_NAME = S2LET
3131
# This could be handy for archiving the generated documentation or
3232
# if some version control system is used.
3333

34-
PROJECT_NUMBER = 2.2.5
34+
PROJECT_NUMBER = 2.2.6
3535

3636
# Using the PROJECT_BRIEF tag one can provide an optional one line description
3737
# for a project that appears at the top of each page and should give viewer

0 commit comments

Comments
 (0)