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

Skip to content

Commit 901685a

Browse files
Merge branch 'master' into cleanup
2 parents 13e2cbd + 348e9fe commit 901685a

File tree

6 files changed

+272
-555
lines changed

6 files changed

+272
-555
lines changed

doc/api/next_api_changes/deprecations.rst

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -428,3 +428,7 @@ future.
428428
The class `matplotlib.testing.decorators.CleanupTestCase` and the decorator
429429
`matplotlib.testing.decorators.cleanup` are not used in the code base. We have
430430
an automatic cleanup via an auto-used fixture instead.
431+
432+
*minor* kwarg to `.Axis.get_ticklocs` will become keyword-only
433+
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
434+
Passing this argument positionally is deprecated.

doc/conf.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,9 @@ def _check_dependencies():
102102
else:
103103
autodoc_default_options = {'members': None, 'undoc-members': None}
104104

105-
nitpicky = True
105+
# missing-references names matches sphinx>=3 behavior, so we can't be nitpicky
106+
# for older sphinxes.
107+
nitpicky = sphinx.version_info >= (3,)
106108
# change this to True to update the allowed failures
107109
missing_references_write_json = False
108110
missing_references_warn_unused_ignores = False

0 commit comments

Comments
 (0)