From a4901ce57b69b1477f966b93c68a3c68c67b416b Mon Sep 17 00:00:00 2001 From: JoyMonteiro Date: Fri, 3 Feb 2023 10:03:12 +0530 Subject: [PATCH] adding new version --- .github/workflows/release_climt.yml | 2 ++ climt/__init__.py | 2 +- setup.cfg | 2 +- setup.py | 2 +- 4 files changed, 5 insertions(+), 3 deletions(-) diff --git a/.github/workflows/release_climt.yml b/.github/workflows/release_climt.yml index 04d18018..4e3a8aeb 100644 --- a/.github/workflows/release_climt.yml +++ b/.github/workflows/release_climt.yml @@ -32,6 +32,7 @@ jobs: - name: Build on Linux env: # CIBW_BUILD: cp310-manylinux_x86_64 cp38-manylinux_x86_64 cp39-manylinux_x86_64 + CIBW_SKIP: "cp36-* cp37-*" CIBW_ENVIRONMENT: "CC=gcc FC=gfortran CLIMT_ARCH=Linux" if: ${{ runner.os == 'Linux' }} run: python -m cibuildwheel --output-dir wheelhouse @@ -40,6 +41,7 @@ jobs: - name: Build on macOS env: # CIBW_BUILD: cp310-macosx_x86_64 cp38-macosx_x86_64 cp39-macosx_x86_64 cp39-macosx_arm64 + CIBW_SKIP: "cp36-* cp37-*" CIBW_ARCHS_MACOS: "x86_64 arm64" CIBW_ENVIRONMENT: "CLIMT_ARCH=Darwin" # CIBW_ENVIRONMENT: "CC=gcc-8 FC=gfortran-8 CLIMT_ARCH=Darwin" diff --git a/climt/__init__.py b/climt/__init__.py index f03d25ce..33ba916f 100644 --- a/climt/__init__.py +++ b/climt/__init__.py @@ -28,4 +28,4 @@ EmanuelConvection, SlabSurface, DcmipInitialConditions, IceSheet, Instellation, DryConvectiveAdjustment, BucketHydrology) -__version__ = '0.17.7' +__version__ = '0.17.8' diff --git a/setup.cfg b/setup.cfg index 33bdd862..5b39be9d 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 0.17.7 +current_version = 0.17.8 commit = True tag = False diff --git a/setup.py b/setup.py index 10b73086..4992c570 100644 --- a/setup.py +++ b/setup.py @@ -236,7 +236,7 @@ def run(self): setup( name='climt', - version='0.17.7', + version='0.17.8', description='CliMT is a Toolkit for building Earth system models in Python.', long_description=readme + '\n\n' + history, author="Rodrigo Caballero",