Skip to content

Commit 50ae37d

Browse files
authored
MAINT: Change all pandas links to use HTTPS (#30669)
Also update the link to pandas' whatsnew page
1 parent bd15c59 commit 50ae37d

36 files changed

+46
-46
lines changed

RELEASE.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,5 +2,5 @@ Release Notes
22
=============
33

44
The list of changes to Pandas between each release can be found
5-
[here](http://pandas.pydata.org/pandas-docs/stable/whatsnew.html). For full
5+
[here](https://pandas.pydata.org/pandas-docs/stable/whatsnew/index.html). For full
66
details, see the commit logs at http://github.com/pandas-dev/pandas.

asv_bench/asv.conf.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
"project": "pandas",
88

99
// The project's homepage
10-
"project_url": "http://pandas.pydata.org/",
10+
"project_url": "https://pandas.pydata.org/",
1111

1212
// The URL of the source code repository for the project being
1313
// benchmarked

conda.recipe/meta.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,5 +36,5 @@ test:
3636

3737

3838
about:
39-
home: http://pandas.pydata.org
39+
home: https://pandas.pydata.org
4040
license: BSD

doc/source/development/contributing.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -434,7 +434,7 @@ The utility script ``scripts/validate_docstrings.py`` can be used to get a csv
434434
summary of the API documentation. And also validate common errors in the docstring
435435
of a specific class, function or method. The summary also compares the list of
436436
methods documented in ``doc/source/api.rst`` (which is used to generate
437-
the `API Reference <http://pandas.pydata.org/pandas-docs/stable/api.html>`_ page)
437+
the `API Reference <https://pandas.pydata.org/pandas-docs/stable/api.html>`_ page)
438438
and the actual public methods.
439439
This will identify methods documented in ``doc/source/api.rst`` that are not actually
440440
class methods, and existing methods that are not documented in ``doc/source/api.rst``.

doc/source/getting_started/tutorials.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ pandas' own :ref:`10 Minutes to pandas<10min>`.
1515

1616
More complex recipes are in the :ref:`Cookbook<cookbook>`.
1717

18-
A handy pandas `cheat sheet <http://pandas.pydata.org/Pandas_Cheat_Sheet.pdf>`_.
18+
A handy pandas `cheat sheet <https://pandas.pydata.org/Pandas_Cheat_Sheet.pdf>`_.
1919

2020
Community guides
2121
================

doc/source/user_guide/cookbook.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -795,7 +795,7 @@ The :ref:`Resample <timeseries.resampling>` docs.
795795
<https://stackoverflow.com/questions/33637312/pandas-grouper-by-frequency-with-completeness-requirement>`__
796796

797797
`Valid frequency arguments to Grouper
798-
<http://pandas.pydata.org/pandas-docs/stable/timeseries.html#offset-aliases>`__
798+
<https://pandas.pydata.org/pandas-docs/stable/timeseries.html#offset-aliases>`__
799799

800800
`Grouping using a MultiIndex
801801
<https://stackoverflow.com/questions/41483763/pandas-timegrouper-on-multiindex>`__

doc/source/user_guide/indexing.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -668,7 +668,7 @@ Current behavior
668668
KeyError in the future, you can use .reindex() as an alternative.
669669
670670
See the documentation here:
671-
http://pandas.pydata.org/pandas-docs/stable/indexing.html#deprecate-loc-reindex-listlike
671+
https://pandas.pydata.org/pandas-docs/stable/indexing.html#deprecate-loc-reindex-listlike
672672
673673
Out[4]:
674674
1 2.0

doc/source/user_guide/io.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2629,7 +2629,7 @@ that contain URLs.
26292629
26302630
url_df = pd.DataFrame({
26312631
'name': ['Python', 'Pandas'],
2632-
'url': ['https://www.python.org/', 'http://pandas.pydata.org']})
2632+
'url': ['https://www.python.org/', 'https://pandas.pydata.org']})
26332633
print(url_df.to_html(render_links=True))
26342634
26352635
.. ipython:: python

doc/source/user_guide/style.ipynb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1063,7 +1063,7 @@
10631063
"- Provide an API that is pleasing to use interactively and is \"good enough\" for many tasks\n",
10641064
"- Provide the foundations for dedicated libraries to build on\n",
10651065
"\n",
1066-
"If you build a great library on top of this, let us know and we'll [link](http://pandas.pydata.org/pandas-docs/stable/ecosystem.html) to it.\n",
1066+
"If you build a great library on top of this, let us know and we'll [link](https://pandas.pydata.org/pandas-docs/stable/ecosystem.html) to it.\n",
10671067
"\n",
10681068
"### Subclassing\n",
10691069
"\n",

doc/source/whatsnew/v0.15.0.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -852,7 +852,7 @@ Other notable API changes:
852852
A value is trying to be set on a copy of a slice from a DataFrame.
853853
Try using .loc[row_indexer,col_indexer] = value instead
854854
855-
See the caveats in the documentation: http://pandas.pydata.org/pandas-docs/stable/indexing.html#indexing-view-versus-copy
855+
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/indexing.html#indexing-view-versus-copy
856856
857857
- ``merge``, ``DataFrame.merge``, and ``ordered_merge`` now return the same type
858858
as the ``left`` argument (:issue:`7737`).

0 commit comments

Comments
 (0)