Skip to content

Commit

Permalink
Merge pull request #52 from astro-informatics/pin-cmake
Browse files Browse the repository at this point in the history
Pin cmake version
  • Loading branch information
mdavezac committed Aug 20, 2023
2 parents 4ec09b8 + 0ca8957 commit afcf27b
Show file tree
Hide file tree
Showing 7 changed files with 9 additions and 8 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/python.yml
Original file line number Diff line number Diff line change
Expand Up @@ -92,14 +92,14 @@ jobs:
mv source-distribution/*.tar.gz wheel-*/*.whl dist
- name: Publish distribution 📦 to Test PyPI
if: ${{ github.ref != 'refs/tags/v2.2.5' }}
if: ${{ github.ref != 'refs/tags/v2.2.6' }}
uses: pypa/gh-action-pypi-publish@release/v1
with:
password: ${{ secrets.TEST_PYPI_TOKEN }}
repository_url: https://test.pypi.org/legacy/

- name: Publish distribution 📦 to PyPI
if: ${{ github.ref == 'refs/tags/v2.2.5' }}
if: ${{ github.ref == 'refs/tags/v2.2.6' }}
uses: pypa/gh-action-pypi-publish@release/v1
with:
password: ${{ secrets.PYPI_TOKEN }}
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -29,3 +29,4 @@ dist/
MANIFEST
.clangd/
compile_commands.json
/_skbuild/
4 changes: 2 additions & 2 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
cmake_minimum_required(VERSION 3.12...4.0)
cmake_minimum_required(VERSION 3.12...3.26)

project(
s2let
VERSION "2.2.5"
VERSION "2.2.6"
DESCRIPTION "Fast wavelets on the sphere"
HOMEPAGE_URL "http://astro-informatics.github.io/s2let/"
LANGUAGES C)
Expand Down
2 changes: 1 addition & 1 deletion makefile
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ UNAME := $(shell uname)

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

# Compilers and options for Fortran
FCC = gfortran
Expand Down
2 changes: 1 addition & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[bumpversion]
current_version = 2.2.5
current_version = 2.2.6
commit = False
tag = False

Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@

setup(
name="pys2let",
version="2.2.5",
version="2.2.6",
author=["Boris Leistedt", "Martin Büttner", "Jennifer Chan", "Jason McEwen"],
install_requires=["numpy"],
extras_require={
Expand Down
2 changes: 1 addition & 1 deletion src/doxygen.config
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ PROJECT_NAME = S2LET
# This could be handy for archiving the generated documentation or
# if some version control system is used.

PROJECT_NUMBER = 2.2.5
PROJECT_NUMBER = 2.2.6

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

0 comments on commit afcf27b

Please sign in to comment.