Skip to content

Commit

Permalink
Update URLs in documentation: http:// → https:// (pypa#4113)
Browse files Browse the repository at this point in the history
  • Loading branch information
abravalheri committed Nov 17, 2023
2 parents 46b8851 + b9d6cb4 commit 352f279
Show file tree
Hide file tree
Showing 8 changed files with 10 additions and 10 deletions.
6 changes: 3 additions & 3 deletions docs/conf.py
Expand Up @@ -45,15 +45,15 @@
),
dict(
pattern=r'Old Setuptools #(?P<old_setuptools>\d+)',
url='http://bugs.python.org/setuptools/issue{old_setuptools}',
url='https://bugs.python.org/setuptools/issue{old_setuptools}',
),
dict(
pattern=r'Jython #(?P<jython>\d+)',
url='http://bugs.jython.org/issue{jython}',
url='https://bugs.jython.org/issue{jython}',
),
dict(
pattern=r'(Python #|bpo-)(?P<python>\d+)',
url='http://bugs.python.org/issue{python}',
url='https://bugs.python.org/issue{python}',
),
dict(
pattern=r'Interop #(?P<interop>\d+)',
Expand Down
2 changes: 1 addition & 1 deletion docs/development/developer-guide.rst
Expand Up @@ -109,7 +109,7 @@ To build the docs locally, use tox::

$ tox -e docs

.. _Sphinx: http://www.sphinx-doc.org/en/master/
.. _Sphinx: https://www.sphinx-doc.org/en/master/
.. _published documentation: https://setuptools.pypa.io/en/latest/

---------------------
Expand Down
2 changes: 1 addition & 1 deletion docs/index.rst
Expand Up @@ -9,7 +9,7 @@ designed to facilitate packaging Python projects.

It helps developers to easily share reusable code (in the form of a library)
and programs (e.g., CLI/GUI tools implemented in Python), that can be installed
with :pypi:`pip` and uploaded to `PyPI <http://pypi.org>`_.
with :pypi:`pip` and uploaded to `PyPI <https://pypi.org>`_.

.. sidebar-links::
:home:
Expand Down
2 changes: 1 addition & 1 deletion docs/pkg_resources.rst
Expand Up @@ -108,7 +108,7 @@ eggs
(For more information about these terms and concepts, see also this
`architectural overview`_ of ``pkg_resources`` and Python Eggs in general.)

.. _architectural overview: http://mail.python.org/pipermail/distutils-sig/2005-June/004652.html
.. _architectural overview: https://mail.python.org/pipermail/distutils-sig/2005-June/004652.html


.. -----------------
Expand Down
2 changes: 1 addition & 1 deletion setuptools/monkey.py
Expand Up @@ -69,7 +69,7 @@ def patch_all():
has_issue_12885 = sys.version_info <= (3, 5, 3)

if has_issue_12885:
# fix findall bug in distutils (http://bugs.python.org/issue12885)
# fix findall bug in distutils (https://bugs.python.org/issue12885)
distutils.filelist.findall = setuptools.findall

needs_warehouse = (3, 4) < sys.version_info < (3, 4, 6) or (
Expand Down
2 changes: 1 addition & 1 deletion setuptools/tests/environment.py
Expand Up @@ -66,7 +66,7 @@ def run_setup_py(cmd, pypath=None, path=None, data_stream=0, env=None):

cmd = [sys.executable, "setup.py"] + list(cmd)

# http://bugs.python.org/issue8557
# https://bugs.python.org/issue8557
shell = sys.platform == 'win32'

try:
Expand Down
2 changes: 1 addition & 1 deletion setuptools/tests/test_editable_install.py
Expand Up @@ -60,7 +60,7 @@ def editable_opts(request):
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers"
]
urls = {Homepage = "http://github.com"}
urls = {Homepage = "https://github.com"}
dependencies = ['importlib-metadata; python_version<"3.8"']
[tool.setuptools]
Expand Down
2 changes: 1 addition & 1 deletion setuptools/windows_support.py
Expand Up @@ -12,7 +12,7 @@ def hide_file(path):
"""
Set the hidden attribute on a file or directory.
From http://stackoverflow.com/questions/19622133/
From https://stackoverflow.com/questions/19622133/
`path` must be text.
"""
Expand Down

0 comments on commit 352f279

Please sign in to comment.