Skip to content

Commit 3d19272

Browse files
authored
MAINT make sure canonical link is https://scikit-learn.org (scikit-learn#28487)
1 parent ee4c8e9 commit 3d19272

File tree

6 files changed

+14
-14
lines changed

6 files changed

+14
-14
lines changed

.github/PULL_REQUEST_TEMPLATE.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ review, either the pull request needs some benchmarking, tinkering,
2626
convincing, etc. or more likely the reviewers are simply busy. In either
2727
case, we ask for your understanding during the review process.
2828
For more information, see our FAQ on this topic:
29-
http://scikit-learn.org/dev/faq.html#why-is-my-pull-request-not-getting-any-attention.
29+
https://scikit-learn.org/dev/faq.html#why-is-my-pull-request-not-getting-any-attention.
3030
3131
Thanks for contributing!
3232
-->

CONTRIBUTING.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ Documentation can be found under the
1818
But there are many other ways to help. In particular answering queries on the
1919
[issue tracker](https://github.com/scikit-learn/scikit-learn/issues),
2020
investigating bugs, and [reviewing other developers' pull
21-
requests](http://scikit-learn.org/dev/developers/contributing.html#code-review-guidelines)
21+
requests](https://scikit-learn.org/dev/developers/contributing.html#code-review-guidelines)
2222
are very valuable contributions that decrease the burden on the project
2323
maintainers.
2424

@@ -30,8 +30,8 @@ link to it from your website, or simply star it in GitHub to say "I use it".
3030
Quick links
3131
-----------
3232

33-
* [Submitting a bug report or feature request](http://scikit-learn.org/dev/developers/contributing.html#submitting-a-bug-report-or-a-feature-request)
34-
* [Contributing code](http://scikit-learn.org/dev/developers/contributing.html#contributing-code)
33+
* [Submitting a bug report or feature request](https://scikit-learn.org/dev/developers/contributing.html#submitting-a-bug-report-or-a-feature-request)
34+
* [Contributing code](https://scikit-learn.org/dev/developers/contributing.html#contributing-code)
3535
* [Coding guidelines](https://scikit-learn.org/dev/developers/develop.html#coding-guidelines)
3636
* [Tips to read current code](https://scikit-learn.org/dev/developers/contributing.html#reading-the-existing-code-base)
3737

doc/README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Documentation for scikit-learn
22

33
This directory contains the full manual and website as displayed at
4-
http://scikit-learn.org. See
5-
http://scikit-learn.org/dev/developers/contributing.html#documentation for
6-
detailed information about the documentation.
4+
https://scikit-learn.org. See
5+
https://scikit-learn.org/dev/developers/contributing.html#documentation for
6+
detailed information about the documentation.

doc/themes/scikit-learn-modern/layout.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
{% block htmltitle %}
2121
<title>{{ title|striptags|e }}{{ titlesuffix }}</title>
2222
{% endblock %}
23-
<link rel="canonical" href="http://scikit-learn.org/stable/{{pagename}}.html" />
23+
<link rel="canonical" href="https://scikit-learn.org/stable/{{pagename}}.html" />
2424

2525
{% if favicon_url %}
2626
<link rel="shortcut icon" href="{{ favicon_url|e }}"/>
@@ -69,7 +69,7 @@
6969
<div class="alert alert-danger p-1 mb-2" role="alert">
7070
<p class="text-center mb-0">
7171
<strong>scikit-learn {{ release }}</strong><br/>
72-
<a href="http://scikit-learn.org/dev/versions.html">Other versions</a>
72+
<a href="https://scikit-learn.org/dev/versions.html">Other versions</a>
7373
</p>
7474
</div>
7575
{%- endif %}

doc/whats_new/older_versions.rst

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1124,7 +1124,7 @@ Changelog
11241124
---------
11251125

11261126
- New `stochastic gradient
1127-
<http://scikit-learn.org/stable/modules/sgd.html>`_ descent
1127+
<https://scikit-learn.org/stable/modules/sgd.html>`_ descent
11281128
module by Peter Prettenhofer. The module comes with complete
11291129
documentation and examples.
11301130

@@ -1256,9 +1256,9 @@ Documentation
12561256
- Improved documentation for many modules, now separating
12571257
narrative documentation from the class reference. As an example,
12581258
see `documentation for the SVM module
1259-
<http://scikit-learn.org/stable/modules/svm.html>`_ and the
1259+
<https://scikit-learn.org/stable/modules/svm.html>`_ and the
12601260
complete `class reference
1261-
<http://scikit-learn.org/stable/modules/classes.html>`_.
1261+
<https://scikit-learn.org/stable/modules/classes.html>`_.
12621262

12631263
Fixes
12641264
-----
@@ -1280,7 +1280,7 @@ Examples
12801280
:ref:`sphx_glr_auto_examples_text_plot_document_classification_20newsgroups.py`
12811281

12821282
- Many more examples. `See here
1283-
<http://scikit-learn.org/stable/auto_examples/index.html>`_
1283+
<https://scikit-learn.org/stable/auto_examples/index.html>`_
12841284
the full list of examples.
12851285

12861286

sklearn/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
# that are accessible to everybody and reusable in various contexts:
1515
# machine-learning as a versatile tool for science and engineering.
1616
#
17-
# See http://scikit-learn.org for complete documentation.
17+
# See https://scikit-learn.org for complete documentation.
1818

1919
import logging
2020
import os

0 commit comments

Comments
 (0)