Skip to content

Commit 92c9486

Browse files
authored
Merge pull request #791 from DimitriPapadopoulos/http
http:// → https://
2 parents fe8ec40 + faeee90 commit 92c9486

File tree

10 files changed

+11
-11
lines changed

10 files changed

+11
-11
lines changed

doc/Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ BUILDDIR = _build
99

1010
# User-friendly check for sphinx-build
1111
ifeq ($(shell which $(SPHINXBUILD) >/dev/null 2>&1; echo $$?), 1)
12-
$(error The '$(SPHINXBUILD)' command was not found. Make sure you have Sphinx installed, then set the SPHINXBUILD environment variable to point to the full path of the '$(SPHINXBUILD)' executable. Alternatively you can add the directory with the executable to your PATH. If you don't have Sphinx installed, grab it from http://sphinx-doc.org/)
12+
$(error The '$(SPHINXBUILD)' command was not found. Make sure you have Sphinx installed, then set the SPHINXBUILD environment variable to point to the full path of the '$(SPHINXBUILD)' executable. Alternatively you can add the directory with the executable to your PATH. If you don't have Sphinx installed, grab it from https://www.sphinx-doc.org/)
1313
endif
1414

1515
# Internal variables.

doc/make.bat

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ if errorlevel 9009 (
5656
echo.may add the Sphinx directory to PATH.
5757
echo.
5858
echo.If you don't have Sphinx installed, grab it from
59-
echo.http://sphinx-doc.org/
59+
echo.https://www.sphinx-doc.org/
6060
exit /b 1
6161
)
6262

doc/pyproject_toml.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@ description
8888
readme
8989
A path (relative to the .toml file) to a file containing a longer description
9090
of your package to show on PyPI. This should be written in `reStructuredText
91-
<http://docutils.sourceforge.net/docs/user/rst/quickref.html>`_, Markdown or
91+
<https://docutils.sourceforge.io/docs/user/rst/quickref.html>`_, Markdown or
9292
plain text, and the filename should have the appropriate extension
9393
(``.rst``, ``.md`` or ``.txt``). Alternatively, ``readme`` can be a table with
9494
either a ``file`` key (a relative path) or a ``text`` key (literal text), and

flit/init.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -190,7 +190,7 @@ def initialise(self):
190190
home_page_default = None
191191
home_page = self.prompt_text('Home page', home_page_default, self.validate_homepage,
192192
retry_msg="Should start with http:// or https:// - try again.")
193-
license = self.prompt_options('Choose a license (see http://choosealicense.com/ for more info)',
193+
license = self.prompt_options('Choose a license (see https://choosealicense.com/ for more info)',
194194
license_choices, self.defaults.get('license'))
195195

196196
readme = self.find_readme()

flit/install.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -53,8 +53,8 @@ def test_writable_dir(path):
5353
return _test_writable_dir_win(path)
5454

5555
def _test_writable_dir_win(path):
56-
# os.access doesn't work on Windows: http://bugs.python.org/issue2528
57-
# and we can't use tempfile: http://bugs.python.org/issue22107
56+
# os.access doesn't work on Windows: https://github.com/python/cpython/issues/46780
57+
# and we can't use tempfile: https://github.com/python/cpython/issues/66305
5858
basename = 'accesstest_deleteme_fishfingers_custard_'
5959
alphabet = 'abcdefghijklmnopqrstuvwxyz0123456789'
6060
for i in range(10):
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
This is an example long description for tests to load.
22

33
This file is `valid reStructuredText
4-
<http://docutils.sourceforge.net/docs/ref/rst/restructuredtext.html>`_.
4+
<https://docutils.sourceforge.io/docs/ref/rst/restructuredtext.html>`_.
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
This is an example long description for tests to load.
22

33
This file is `valid reStructuredText
4-
<http://docutils.sourceforge.net/docs/ref/rst/restructuredtext.html>`_.
4+
<https://docutils.sourceforge.io/docs/ref/rst/restructuredtext.html>`_.

tests/samples/EG_README.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
This is an example long description for tests to load.
22

33
This file is `valid reStructuredText
4-
<http://docutils.sourceforge.net/docs/ref/rst/restructuredtext.html>`_.
4+
<https://docutils.sourceforge.io/docs/ref/rst/restructuredtext.html>`_.
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
This is an example long description for tests to load.
22

33
This file is `valid reStructuredText
4-
<http://docutils.sourceforge.net/docs/ref/rst/restructuredtext.html>`_.
4+
<https://docutils.sourceforge.io/docs/ref/rst/restructuredtext.html>`_.
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
This is an example long description for tests to load.
22

33
This file is `valid reStructuredText
4-
<http://docutils.sourceforge.net/docs/ref/rst/restructuredtext.html>`_.
4+
<https://docutils.sourceforge.io/docs/ref/rst/restructuredtext.html>`_.

0 commit comments

Comments
 (0)