Skip to content

Commit 3c259b5

Browse files
committed
upgrade all URLs to https
1 parent 80d1214 commit 3c259b5

File tree

6 files changed

+9
-9
lines changed

6 files changed

+9
-9
lines changed

CHANGELOG.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ Released 2014-10-14.
6363
Python 2.6, such as the ``except ... as`` construct, but this was not
6464
documented.)
6565

66-
.. _Documentation: http://modernize.readthedocs.org/en/latest/
66+
.. _Documentation: https://modernize.readthedocs.org/en/latest/
6767

6868

6969
Version 0.3

docs/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.

docs/conf.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -95,9 +95,9 @@
9595
# keep_warnings = False
9696

9797
intersphinx_mapping = {
98-
"python": ("http://docs.python.org/3", None),
99-
"python2": ("http://docs.python.org/2", None),
100-
"six": ("http://pythonhosted.org/six/", None),
98+
"python": ("https://docs.python.org/3", None),
99+
"python2": ("https://docs.python.org/2", None),
100+
"six": ("https://six.readthedocs.io/", None),
101101
}
102102

103103

docs/fixers.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,8 @@ If you wish to turn off these fixers to avoid an external dependency on ``six``,
1919
then use the ``--no-six`` flag.
2020

2121
Fixers use the API defined by fissix. For details of how this works, and how to
22-
implement your own fixers, see `Creating a fixer, at
23-
python3porting.com <http://python3porting.com/fixers.html#creating-a-fixer>`_.
22+
implement your own fixers, see `Creating a fixer, at python3porting.com
23+
<https://web.archive.org/web/20200903114908/python3porting.com/fixers.html#creating-a-fixer>`_.
2424
``python -m modernize`` will try to load fixers whose full dotted-path is specified
2525
as a ``-f`` argument, but will fail if they are not found. By default, fixers
2626
will not be found in the current directory; use ``--fixers-here`` to make

docs/index.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ A note about handling text literals
3737
3838
- By default modernize does not change Unicode literals at all, which means that
3939
you can take advantage of
40-
`PEP 414 <http://legacy.python.org/dev/peps/pep-0414/>`_.
40+
`PEP 414 <https://www.python.org/dev/peps/pep-0414/>`_.
4141
This is the simplest option if you only want to support Python 3.3 and above
4242
along with Python 2.
4343
- Alternatively, there is the ``--six-unicode`` flag which will wrap Unicode

docs/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://pypi.org/project/sphinx/
6060
exit /b 1
6161
)
6262

0 commit comments

Comments
 (0)