Skip to content

Commit 492159b

Browse files
authored
Merge pull request #200 from CliMT/develop
fixing missing import
2 parents 5e41380 + 4df7dce commit 492159b

5 files changed

Lines changed: 5 additions & 6 deletions

File tree

.github/workflows/release_climt.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ jobs:
3333
env:
3434
CIBW_BUILD: cp39-* cp310-* cp311-* cp312-*
3535
CIBW_SKIP: "*-musllinux_*"
36-
CIBW_ARCHS_LINUX: "x86_64 aarch64"
36+
CIBW_ARCHS_LINUX: "x86_64"
3737
CIBW_ENVIRONMENT: "CC=gcc FC=gfortran CLIMT_ARCH=Linux"
3838
if: ${{ runner.os == 'Linux' }}
3939
run: python -m cibuildwheel --output-dir dist

climt/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,4 +67,4 @@
6767
BucketHydrology,
6868
)
6969

70-
__version__ = "0.18.3"
70+
__version__ = "0.18.4"
Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
11
from .component import EmanuelConvection
2-
from .pure_python import EmanuelConvectionPython
32

4-
__all__ = ("EmanuelConvection", "EmanuelConvectionPython")
3+
__all__ = ["EmanuelConvection"]

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 = 0.18.3
2+
current_version = 0.18.4
33
commit = True
44
tag = False
55

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -292,7 +292,7 @@ def run(self):
292292

293293
setup(
294294
name="climt",
295-
version="0.18.3",
295+
version="0.18.4",
296296
description="CliMT is a Toolkit for building Earth system models in Python.",
297297
long_description=readme + "\n\n" + history,
298298
author="Rodrigo Caballero",

0 commit comments

Comments
 (0)