Skip to content

Commit 608f286

Browse files
committed
Fix broken links
1 parent 32f3585 commit 608f286

8 files changed

Lines changed: 10 additions & 11 deletions

source/guides/analyzing-pypi-package-downloads.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ In order to use `Google BigQuery`_ to query the `public PyPI download
5353
statistics dataset`_, you'll need a Google account and to enable the BigQuery
5454
API on a Google Cloud Platform project. You can run the up to 1TB of queries
5555
per month `using the BigQuery free tier without a credit card
56-
<https://cloud.google.com/blog/big-data/2017/01/how-to-run-a-terabyte-of-google-bigquery-queries-each-month-without-a-credit-card>`__
56+
<https://cloud.google.com/blog/products/data-analytics/query-without-a-credit-card-introducing-bigquery-sandbox>`__
5757

5858
- Navigate to the `BigQuery web UI`_.
5959
- Create a new project.

source/guides/installing-using-linux-tools.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -94,9 +94,9 @@ To install pip, wheel, and setuptools, in a parallel, non-system environment
9494

9595
Be aware that collections may not contain the most recent versions.
9696

97-
2. Enable the `IUS repository <https://ius.io/GettingStarted/>`_ and
97+
2. Enable the `IUS repository <https://ius.io/setup>`_ and
9898
install one of the `parallel-installable
99-
<https://ius.io/SafeRepo/#parallel-installable-package>`_
99+
<https://ius.io/usage#parallel-installable-packages>`_
100100
Pythons, along with pip, setuptools, and wheel, which are kept fairly up to
101101
date.
102102

source/guides/packaging-binary-extensions.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -165,7 +165,7 @@ wrapper modules up to date.
165165
hand, however, and is very repetitive, so may not be a good choice for
166166
wrapping large APIs.
167167

168-
* `pybind11 <https://pybind11.readthedocs.io/en/stable//en/stable/>`__ is a pure C++11 library
168+
* `pybind11 <https://pybind11.readthedocs.io/en/stable/>`__ is a pure C++11 library
169169
that provides a clean C++ interface to the CPython (and PyPy) C API. It
170170
does not require a pre-processing step; it is written entirely in
171171
templated C++. Helpers are included for Setuptools or CMake builds. It

source/guides/packaging-namespace-packages.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -236,7 +236,7 @@ to :func:`~setuptools.setup` in :file:`setup.py`. For example:
236236
A complete working example of two pkg_resources-style namespace packages can be found
237237
in the `pkg_resources namespace example project`_.
238238

239-
.. _setuptools: https://setuptools.readthedocs.io
239+
.. _setuptools: https://setuptools.readthedocs.io/en/latest/
240240
.. _pkg_resources.declare_namespace:
241241
https://setuptools.readthedocs.io/en/latest/setuptools.html#namespace-packages
242242
.. _pkg_resources namespace example project:

source/guides/publishing-package-distribution-releases-using-github-actions-ci-cd-workflows.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -144,4 +144,4 @@ sure that your release pipeline remains healthy!
144144
.. _`pypa/gh-action-pypi-publish GitHub Action`:
145145
https://github.com/marketplace/actions/pypi-publish
146146
.. _Secrets:
147-
https://help.github.com/en/articles/virtual-environments-for-github-actions#creating-and-using-secrets-encrypted-variables
147+
https://docs.github.com/en/actions/using-github-hosted-runners/about-github-hosted-runners#creating-and-using-secrets-encrypted-variables

source/overview.rst

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -290,7 +290,6 @@ A similar model involves installing an alternative Python
290290
distribution, but does not support arbitrary operating system-level
291291
packages:
292292

293-
* `Enthought Canopy <https://www.enthought.com/product/canopy/>`_
294293
* `ActiveState ActivePython <https://www.activestate.com/products/python/>`_
295294
* `WinPython <http://winpython.github.io/>`_
296295

@@ -362,7 +361,7 @@ data centers, though certain complex applications can benefit from
362361
this packaging. Technologies are Python agnostic, and include:
363362

364363
* `Vagrant <https://www.vagrantup.com/>`_
365-
* `VHD <https://en.wikipedia.org/wiki/VHD_(file_format)>`_, `AMI <https://en.wikipedia.org/wiki/Amazon_Machine_Image>`_, and `other formats <https://docs.openstack.org/image-guide/image-formats.html>`_
364+
* `VHD <https://en.wikipedia.org/wiki/VHD_(file_format)>`_, `AMI <https://en.wikipedia.org/wiki/Amazon_Machine_Image>`_, and `other formats <https://docs.openstack.org/glance/pike/user/formats.html>`_
366365
* `OpenStack <https://www.redhat.com/en/topics/openstack>`_ - A cloud management system in Python, with extensive VM support
367366

368367
Bringing your own hardware
@@ -405,7 +404,7 @@ Debian, Ubuntu, etc.) or `RPM
405404
<https://en.wikipedia.org/wiki/RPM_Package_Manager>`_ (for Red Hat,
406405
Fedora, etc.), and use that built-in package manager to take care of
407406
installation, and even deployment. You can even use `FPM
408-
<https://fpm.readthedocs.io/en/latest/source/virtualenv.html>`_ to
407+
<https://fpm.readthedocs.io/en/latest/cli-reference.html#virtualenv>`_ to
409408
generate both deb and RPMs from the same source.
410409

411410
In most deployment pipelines, the OS package manager is just one piece

source/specifications/index.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ PyPA specifications
66
This is a list of currently active interoperability specifications maintained
77
by the Python Packaging Authority. The process for updating these standards,
88
and for proposing new ones, is documented on
9-
`pypa.io <https://www.pypa.io/en/latest//en/latest/specifications/>`__.
9+
`pypa.io <https://www.pypa.io/en/latest/specifications/>`__.
1010

1111

1212
Package Distribution Metadata

source/tutorials/installing-packages.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -462,7 +462,7 @@ directory to your :envvar:`PATH`:
462462
``PATH`` changes to take effect.
463463

464464
.. _user base: https://docs.python.org/3/library/site.html#site.USER_BASE
465-
.. _modifying ~/.profile: https://stackoverflow.com/a/14638025
465+
.. _modifying ~/.profile: https://stackoverflow.com/questions/14637979/how-to-permanently-set-path-on-linux-unix/14638025#14638025
466466
.. _Control Panel: https://docs.microsoft.com/en-us/windows/win32/shell/user-environment-variables?redirectedfrom=MSDN
467467

468468
Requirements files

0 commit comments

Comments
 (0)