Skip to content

Commit 17046db

Browse files
committed
Merge branch 'develop' into calibrate-impact-functions
2 parents 9bf050c + f0057d0 commit 17046db

File tree

5 files changed

+13
-7
lines changed

5 files changed

+13
-7
lines changed

CHANGELOG.md

Lines changed: 9 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,13 +16,19 @@ Code freeze date: YYYY-MM-DD
1616

1717
### Fixed
1818

19-
- Fix `util.coordinates.latlon_bounds` for cases where the specified buffer is very large so that the bounds cover more than the full longitudinal range `[-180, 180]` [#839](https://github.com/CLIMADA-project/climada_python/pull/839)
20-
- Fix `climada.hazard.trop_cyclone` for TC tracks crossing the antimeridian [#839](https://github.com/CLIMADA-project/climada_python/pull/839)
21-
2219
### Deprecated
2320

2421
### Removed
2522

23+
## 4.1.1
24+
25+
Release date: 2024-02-21
26+
27+
### Fixed
28+
29+
- Fix `util.coordinates.latlon_bounds` for cases where the specified buffer is very large so that the bounds cover more than the full longitudinal range `[-180, 180]` [#839](https://github.com/CLIMADA-project/climada_python/pull/839)
30+
- Fix `climada.hazard.trop_cyclone` for TC tracks crossing the antimeridian [#839](https://github.com/CLIMADA-project/climada_python/pull/839)
31+
2632
## 4.1.0
2733

2834
Release date: 2024-02-14

climada/_version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = '4.1.1-dev'
1+
__version__ = '4.1.2-dev'

climada/hazard/base.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -840,7 +840,7 @@ def year_month_day_accessor(
840840
return array.dt.strftime("%Y-%m-%d").values
841841

842842
# Handle access errors
843-
except (ValueError, TypeError) as err:
843+
except (ValueError, TypeError, AttributeError) as err:
844844
if strict:
845845
raise err
846846

requirements/env_climada.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,6 @@ dependencies:
3939
- tabulate>=0.9
4040
- tqdm>=4.66
4141
- unittest-xml-reporting>=3.2
42-
- xarray>=2024.1
42+
- xarray>=2024.2
4343
- xlrd>=2.0
4444
- xlsxwriter>=3.1

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@
3333
setup(
3434
name='climada',
3535

36-
version='4.1.1-dev',
36+
version='4.1.2-dev',
3737

3838
description='CLIMADA in Python',
3939

0 commit comments

Comments
 (0)