|
14 | 14 | import inspect
|
15 | 15 | import logging
|
16 | 16 | import os
|
| 17 | +import re |
17 | 18 | import sys
|
18 | 19 | import warnings
|
19 | 20 |
|
@@ -798,3 +799,49 @@ def setup(app):
|
798 | 799 | app.add_autodocumenter(AccessorMethodDocumenter)
|
799 | 800 | app.add_autodocumenter(AccessorCallableDocumenter)
|
800 | 801 | app.add_directive("autosummary", PandasAutosummary)
|
| 802 | + |
| 803 | + |
| 804 | +# Ignore list for broken links,found in CI run checks for broken-linkcheck.yml |
| 805 | + |
| 806 | +linkcheck_ignore = [ |
| 807 | + "^http://$", |
| 808 | + "^https://$", |
| 809 | + *[ |
| 810 | + re.escape(link) |
| 811 | + for link in [ |
| 812 | + "http://scatterci.github.io/pydata/pandas", |
| 813 | + "http://specs.frictionlessdata.io/json-table-schema/", |
| 814 | + "https://cloud.google.com/bigquery/docs/access-control#roles", |
| 815 | + "https://cloud.google.com/bigquery/docs/reference/rest/v2/jobs#configuration.query", |
| 816 | + "https://crates.io/crates/calamine", |
| 817 | + "https://devguide.python.org/setup/#macos", |
| 818 | + "https://en.wikipedia.org/wiki/Imputation_statistics", |
| 819 | + "https://en.wikipedia.org/wiki/Imputation_(statistics", |
| 820 | + "https://github.com/noatamir/pandas-dev", |
| 821 | + "https://github.com/pandas-dev/pandas/blob/main/pandas/plotting/__init__.py#L1", |
| 822 | + "https://github.com/pandas-dev/pandas/blob/v0.20.2/pandas/core/generic.py#L568", |
| 823 | + "https://github.com/pandas-dev/pandas/blob/v0.20.2/pandas/core/frame.py#L1495", |
| 824 | + "https://github.com/pandas-dev/pandas/issues/174151", |
| 825 | + "https://gitpod.io/#https://github.com/USERNAME/pandas", |
| 826 | + "https://manishamde.github.io/blog/2013/03/07/pandas-and-python-top-10/", |
| 827 | + "https://matplotlib.org/api/axes_api.html#matplotlib.axes.Axes.table", |
| 828 | + "https://nipunbatra.github.io/blog/visualisation/2013/05/01/aggregation-timeseries.html", |
| 829 | + "https://nbviewer.ipython.org/gist/metakermit/5720498", |
| 830 | + "https://numpy.org/doc/stable/user/basics.byteswapping.html", |
| 831 | + "https://pandas-gbq.readthedocs.io/en/latest/changelog.html#changelog-0-8-0", |
| 832 | + "https://pandas.pydata.org/pandas-docs/stable/io.html#io-chunking", |
| 833 | + "https://pandas.pydata.org/pandas-docs/stable/ecosystem.html", |
| 834 | + "https://sqlalchemy.readthedocs.io/en/latest/dialects/index.html", |
| 835 | + "https://support.sas.com/documentation/cdl/en/lrdict/64316/HTML/default/viewer.htm#a000245912.htm", |
| 836 | + "https://support.sas.com/documentation/cdl/en/lrdict/64316/HTML/default/viewer.htm#a000214639.htm", |
| 837 | + "https://support.sas.com/documentation/cdl/en/lrdict/64316/HTML/default/viewer.htm#a002283942.htm", |
| 838 | + "https://support.sas.com/documentation/cdl/en/lrdict/64316/HTML/default/viewer.htm#a000245965.htm", |
| 839 | + "https://support.sas.com/documentation/cdl/en/imlug/66845/HTML/default/viewer.htm#imlug_langref_sect455.htm", |
| 840 | + "https://support.sas.com/documentation/cdl/en/lrdict/64316/HTML/default/viewer.htm#a002284668.htm", |
| 841 | + "https://support.sas.com/documentation/cdl/en/lrdict/64316/HTML/default/viewer.htm#a002978282.htm", |
| 842 | + "https://wesmckinney.com/blog/update-on-upcoming-pandas-v0-10-new-file-parser-other-performance-wins/", |
| 843 | + "https://visualstudio.microsoft.com/downloads/#build-tools-for-visual-studio-2022", |
| 844 | + "pandas.zip", |
| 845 | + ] |
| 846 | + ], |
| 847 | +] |
0 commit comments