You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: CHANGELOG.md
+33-33
Original file line number
Diff line number
Diff line change
@@ -4,8 +4,8 @@
4
4
5
5
### Breaking changes
6
6
7
-
- Removed support for python 3.9 ([#130](https://github.com/mathause/mplotutils/pull/130)).
8
-
- The minimum versions of some dependencies were changed ([#132](https://github.com/mathause/mplotutils/pull/132)).
7
+
- Removed support for python 3.9 ([#130](https://github.com/mpytools/mplotutils/pull/130)).
8
+
- The minimum versions of some dependencies were changed ([#132](https://github.com/mpytools/mplotutils/pull/132)).
9
9
10
10
| Package | Old | New |
11
11
| ----------- | ------ | ------- |
@@ -17,7 +17,7 @@
17
17
18
18
- The modules ``cartopy_utils``, ``colormaps``, ``map_layout``, ``mpl``, and ``xrcompat``
19
19
were renamed (added a leading underscore) to indicate that they are private
20
-
([#141](https://github.com/mathause/mplotutils/pull/141) and [#142](https://github.com/mathause/mplotutils/pull/142)).
20
+
([#141](https://github.com/mpytools/mplotutils/pull/141) and [#142](https://github.com/mpytools/mplotutils/pull/142)).
21
21
22
22
### Enhancements
23
23
@@ -28,30 +28,30 @@
28
28
3.`mpu.hatch_map_global`: as 2. but also adds a cyclic point to the array
29
29
30
30
all three functions expect a 2D boolean `xr.DataArray` and a hatch pattern. Values that are `True` are hatched
31
-
([#123](https://github.com/mathause/mplotutils/pull/123) and [#143](https://github.com/mathause/mplotutils/pull/143)).
31
+
([#123](https://github.com/mpytools/mplotutils/pull/123) and [#143](https://github.com/mpytools/mplotutils/pull/143)).
32
32
33
33
34
-
- Enable passing `AxesGrid` (from `mpl_toolkits.axes_grid1`) to `set_map_layout` ([#116](https://github.com/mathause/mplotutils/pull/116)).
35
-
- Raise more informative error when a wrong type is passed to `set_map_layout` ([#121](https://github.com/mathause/mplotutils/pull/121)).
36
-
-`set_map_layout` now raises an explicit error when the figure contains SubFigure ([#121](https://github.com/mathause/mplotutils/pull/121)).
37
-
- Test upstream dependencies and fix compatibility with the upcoming pandas v3 ([#133](https://github.com/mathause/mplotutils/pull/133)).
34
+
- Enable passing `AxesGrid` (from `mpl_toolkits.axes_grid1`) to `set_map_layout` ([#116](https://github.com/mpytools/mplotutils/pull/116)).
35
+
- Raise more informative error when a wrong type is passed to `set_map_layout` ([#121](https://github.com/mpytools/mplotutils/pull/121)).
36
+
-`set_map_layout` now raises an explicit error when the figure contains SubFigure ([#121](https://github.com/mpytools/mplotutils/pull/121)).
37
+
- Test upstream dependencies and fix compatibility with the upcoming pandas v3 ([#133](https://github.com/mpytools/mplotutils/pull/133)).
38
38
39
39
### Bug fixes
40
40
41
-
- Ensure the current axes (`plt.gca()`) is not changed by calling `mpu.colorbar(...)` ([#136](https://github.com/mathause/mplotutils/pull/136)).
41
+
- Ensure the current axes (`plt.gca()`) is not changed by calling `mpu.colorbar(...)` ([#136](https://github.com/mpytools/mplotutils/pull/136)).
42
42
43
43
### Internal changes
44
44
45
45
- Align internal usage of `ListedColormaps` with changes in [matplotlib/matplotlib#29135](https://github.com/matplotlib/matplotlib/pull/29135)
46
-
([#145](https://github.com/mathause/mplotutils/pull/145), and [#147](https://github.com/mathause/mplotutils/pull/147)).
46
+
([#145](https://github.com/mpytools/mplotutils/pull/145), and [#147](https://github.com/mpytools/mplotutils/pull/147)).
47
47
48
48
## v0.5.0 (27.03.2024)
49
49
50
50
Version v0.5.0 aligns passing multiple axes to `colorbar` with matplotlib.
51
51
52
52
### Breaking changes
53
53
54
-
- The `ax1` and `ax2` arguments of `mpu.colorbar` have been combined into `ax` ([#107](https://github.com/mathause/mplotutils/pull/107))
54
+
- The `ax1` and `ax2` arguments of `mpu.colorbar` have been combined into `ax` ([#107](https://github.com/mpytools/mplotutils/pull/107))
55
55
To update
56
56
57
57
```diff
@@ -63,8 +63,8 @@ Version v0.5.0 aligns passing multiple axes to `colorbar` with matplotlib.
63
63
- mpu.colorbar(h, axs[0], axs[1])
64
64
+ mpu.colorbar(h, axs)
65
65
```
66
-
- When passing `size` to `mpu.colorbar` it now uses the height/ width of _all_ passed axes to scale the colorbar. This is consistent with `plt.colorbar` but may lead to differences compared to the previous version ([#107](https://github.com/mathause/mplotutils/pull/107)).
67
-
- Similarly for `pad`, which is also scaled by the height/ width of _all_ passed axes. This is consistent with `plt.colorbar` but may change the padding of the colorbar compared to the previous version ([#107](https://github.com/mathause/mplotutils/pull/107)).
66
+
- When passing `size` to `mpu.colorbar` it now uses the height/ width of _all_ passed axes to scale the colorbar. This is consistent with `plt.colorbar` but may lead to differences compared to the previous version ([#107](https://github.com/mpytools/mplotutils/pull/107)).
67
+
- Similarly for `pad`, which is also scaled by the height/ width of _all_ passed axes. This is consistent with `plt.colorbar` but may change the padding of the colorbar compared to the previous version ([#107](https://github.com/mpytools/mplotutils/pull/107)).
68
68
69
69
70
70
## v0.4.0 (23.02.2024)
@@ -74,8 +74,8 @@ bumps the supported versions.
74
74
75
75
### Breaking changes
76
76
77
-
- Removed support for python 3.7 and python 3.8 ([#88](https://github.com/mathause/mplotutils/pull/88)).
78
-
- The minimum versions of some dependencies were changed ([#88](https://github.com/mathause/mplotutils/pull/88), [#91](https://github.com/mathause/mplotutils/pull/91), and [#96](https://github.com/mathause/mplotutils/pull/96)).
77
+
- Removed support for python 3.7 and python 3.8 ([#88](https://github.com/mpytools/mplotutils/pull/88)).
78
+
- The minimum versions of some dependencies were changed ([#88](https://github.com/mpytools/mplotutils/pull/88), [#91](https://github.com/mpytools/mplotutils/pull/91), and [#96](https://github.com/mpytools/mplotutils/pull/96)).
79
79
80
80
| Package | Old | New |
81
81
| ------------ | ----- | ----- |
@@ -87,13 +87,13 @@ bumps the supported versions.
87
87
88
88
89
89
-`sample_data_map` now offsets the lon data such that the first grid cell does not wrap
90
-
around ([#87](https://github.com/mathause/mplotutils/pull/87)).
90
+
around ([#87](https://github.com/mpytools/mplotutils/pull/87)).
91
91
92
92
### Enhancements
93
93
94
94
- Calling `f.canvas.draw()` before `plt.savefig` is no longer necessary. This now happens
Go to the [newest release on github](https://github.com/mathause/mplotutils/releases/latest), copy the URL of the `*.tar.gz` source file at the bottom and then use pip to install it (i.e. `pip install ...`).
34
+
Go to the [newest release on github](https://github.com/mpytools/mplotutils/releases/latest), copy the URL of the `*.tar.gz` source file at the bottom and then use pip to install it (i.e. `pip install ...`).
0 commit comments