Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/release_climt.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ jobs:
env:
CIBW_BUILD: cp39-* cp310-* cp311-* cp312-*
CIBW_SKIP: "*-musllinux_*"
CIBW_ARCHS_LINUX: "x86_64 aarch64"
CIBW_ARCHS_LINUX: "x86_64"
CIBW_ENVIRONMENT: "CC=gcc FC=gfortran CLIMT_ARCH=Linux"
if: ${{ runner.os == 'Linux' }}
run: python -m cibuildwheel --output-dir dist
Expand Down
2 changes: 1 addition & 1 deletion climt/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -67,4 +67,4 @@
BucketHydrology,
)

__version__ = "0.18.3"
__version__ = "0.18.4"
3 changes: 1 addition & 2 deletions climt/_components/emanuel/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
from .component import EmanuelConvection
from .pure_python import EmanuelConvectionPython

__all__ = ("EmanuelConvection", "EmanuelConvectionPython")
__all__ = ["EmanuelConvection"]
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 = 0.18.3
current_version = 0.18.4
commit = True
tag = False

Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -292,7 +292,7 @@ def run(self):

setup(
name="climt",
version="0.18.3",
version="0.18.4",
description="CliMT is a Toolkit for building Earth system models in Python.",
long_description=readme + "\n\n" + history,
author="Rodrigo Caballero",
Expand Down
Loading