Skip to content

Commit 178e624

Browse files
'Automated update v4.0.0'
1 parent 4e51484 commit 178e624

File tree

4 files changed

+20
-21
lines changed

4 files changed

+20
-21
lines changed

CHANGELOG.md

Lines changed: 11 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,8 @@
11
# Changelog
22

3-
## Unreleased
3+
## 4.0.0
44

5-
Release date: YYYY-MM-DD
6-
7-
Code freeze date: YYYY-MM-DD
5+
Release date: 2023-09-01
86

97
### Dependency Updates
108

@@ -63,7 +61,7 @@ Removed:
6361
- 'Extra' requirements `doc`, `test`, and `dev` for Python package [#712](https://github.com/CLIMADA-project/climada_python/pull/712)
6462
- Added method `Exposures.centroids_total_value` to replace the functionality of `Exposures.affected_total_value`. This method is temporary and deprecated. [#702](https://github.com/CLIMADA-project/climada_python/pull/702)
6563
- New method `climada.util.api_client.Client.purge_cache`: utility function to remove outdated files from the local file system to free disk space.
66-
([#737](https://github.com/CLIMADA-project/climada_python/pull/737))
64+
([#737](https://github.com/CLIMADA-project/climada_python/pull/737))
6765
- New attribute `climada.hazard.Hazard.haz_type`: used for assigning impacts to hazards. In previous versions this information was stored in the now removed `climada.hazard.tag.Tag` class. [#736](https://github.com/CLIMADA-project/climada_python/pull/736)
6866
- New attribute `climada.entity.exposures.Exposures.description`: used for setting the default title in plots from plotting mathods `plot_hexbin` and `plot_scatter`. In previous versions this information was stored in the deprecated `climada.entity.tag.Tag` class. [#756](https://github.com/CLIMADA-project/climada_python/pull/756)
6967
- Added advanced examples in unsequa tutorial for coupled input variables and for handling efficiently the loading of multiple large files [#766](https://github.com/CLIMADA-project/climada_python/pull/766)
@@ -119,14 +117,14 @@ Removed:
119117
- `Centroids.set_raster_from_pix_bounds` [#721](https://github.com/CLIMADA-project/climada_python/pull/721)
120118
- `requirements/env_developer.yml` environment specs. Use 'extra' requirements when installing the Python package instead [#712](https://github.com/CLIMADA-project/climada_python/pull/712)
121119
- The `climada.entitity.tag.Tag` class, together with `Impact.tag`, `Exposures.tag`, `ImpactFuncSet.tag`, `MeasuresSet.tag`, `Hazard.tag` attributes.
122-
This may break backwards-compatibility with respect to the files written and read by the `Impact` class.
123-
[#736](https://github.com/CLIMADA-project/climada_python/pull/736),
124-
[#743](https://github.com/CLIMADA-project/climada_python/pull/743),
125-
[#753](https://github.com/CLIMADA-project/climada_python/pull/753),
126-
[#754](https://github.com/CLIMADA-project/climada_python/pull/754),
127-
[#756](https://github.com/CLIMADA-project/climada_python/pull/756),
128-
[#767](https://github.com/CLIMADA-project/climada_python/pull/767),
129-
[#779](https://github.com/CLIMADA-project/climada_python/pull/779)
120+
This may break backwards-compatibility with respect to the files written and read by the `Impact` class.
121+
[#736](https://github.com/CLIMADA-project/climada_python/pull/736),
122+
[#743](https://github.com/CLIMADA-project/climada_python/pull/743),
123+
[#753](https://github.com/CLIMADA-project/climada_python/pull/753),
124+
[#754](https://github.com/CLIMADA-project/climada_python/pull/754),
125+
[#756](https://github.com/CLIMADA-project/climada_python/pull/756),
126+
[#767](https://github.com/CLIMADA-project/climada_python/pull/767),
127+
[#779](https://github.com/CLIMADA-project/climada_python/pull/779)
130128
- `impact.tot_value` attribute removed from unsequa module [#763](https://github.com/CLIMADA-project/climada_python/pull/763)
131129

132130
## v3.3.2
@@ -155,10 +153,6 @@ Patch-relaese with altered base config file so that the basic installation test
155153

156154
Release date: 2023-02-17
157155

158-
Code freeze date: 2023-02-05
159-
160-
### Description
161-
162156
### Dependency Changes
163157

164158
new:
@@ -248,4 +242,3 @@ updated:
248242
- `climada.enginge.impact.Impact.calc()` and `climada.enginge.impact.Impact.calc_impact_yearset()`
249243
[#436](https://github.com/CLIMADA-project/climada_python/pull/436).
250244

251-
### Removed

climada/_version.py

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

doc/misc/README.md

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,13 @@ This is the Python (3.8+) version of CLIMADA - please see https://github.com/dav
1515

1616
## Getting started
1717

18-
CLIMADA runs on Windows, macOS and Linux. It can be installed from sources or - in case of climada_python - directly with pip. See the [installation guide](https://climada-python.readthedocs.io/en/latest/guide/install.html) for instructions.
18+
CLIMADA runs on Windows, macOS and Linux.
19+
The released versions of the CLIMADA core can be installed directly through Anaconda:
20+
```shell
21+
conda install -c conda-forge climada
22+
```
23+
It is **highly recommended** to install CLIMADA into a **separate** Anaconda environment.
24+
See the [installation guide](https://climada-python.readthedocs.io/en/latest/guide/install.html) for further information.
1925

2026
Follow the [tutorial](https://climada-python.readthedocs.io/en/latest/tutorial/1_main_climada.html) `climada_python-x.y.z/doc/tutorial/1_main_climada.ipynb` in a Jupyter Notebook to see what can be done with CLIMADA and how.
2127

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='3.3.2-dev',
36+
version='4.0.0',
3737

3838
description='CLIMADA in Python',
3939

0 commit comments

Comments
 (0)