Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 6941be0

Browse files
committed
Bump some deprecation removal dates.
1 parent b1f4b8f commit 6941be0

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

lib/matplotlib/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -516,7 +516,7 @@ def get_data_path(*, _from_rc=None):
516516
"3.2",
517517
message=("Setting the datapath via matplotlibrc is deprecated "
518518
"%(since)s and will be removed %(removal)s."),
519-
removal='3.3')
519+
removal='3.4')
520520
path = Path(_from_rc)
521521
if path.is_dir():
522522
defaultParams['datapath'][0] = str(path)

lib/matplotlib/colors.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1256,8 +1256,8 @@ def __init__(self, linthresh, linscale=1.0, vmin=None, vmax=None,
12561256
if base is None:
12571257
self._base = np.e
12581258
cbook.warn_deprecated(
1259-
"3.2", removal="3.3", message="default base will change from "
1260-
"np.e to 10 in %(removal)s. To suppress this warning specify "
1259+
"3.2", removal="3.4", message="default base will change from "
1260+
"np.e to 10 %(removal)s. To suppress this warning specify "
12611261
"the base keyword argument.")
12621262
else:
12631263
self._base = base

0 commit comments

Comments
 (0)