where possible http->https and fix links

This commit is contained in:
Anthony Sottile 2022-02-10 15:47:58 -05:00
parent 0322dee1ed
commit c6882772e1
6 changed files with 12 additions and 12 deletions

View file

@ -1,3 +1,3 @@
Please refer to `Contributing to Flake8
<http://flake8.pycqa.org/en/latest/internal/contributing.html>`_
<https://flake8.pycqa.org/en/latest/internal/contributing.html>`_
on our website.

View file

@ -37,14 +37,14 @@ Quickstart
==========
See our `quickstart documentation
<http://flake8.pycqa.org/en/latest/index.html#quickstart>`_ for how to install
<https://flake8.pycqa.org/en/latest/index.html#quickstart>`_ for how to install
and get started with Flake8.
Frequently Asked Questions
==========================
Flake8 maintains an `FAQ <http://flake8.pycqa.org/en/latest/faq.html>`_ in its
Flake8 maintains an `FAQ <https://flake8.pycqa.org/en/latest/faq.html>`_ in its
documentation.
@ -61,7 +61,7 @@ to suggest, the mailing list would be the best place for it.
Links
=====
* `Flake8 Documentation <http://flake8.pycqa.org/en/latest/>`_
* `Flake8 Documentation <https://flake8.pycqa.org/en/latest/>`_
* `GitHub Project <https://github.com/pycqa/flake8>`_
@ -72,14 +72,14 @@ Links
<https://mail.python.org/mailman/listinfo/code-quality>`_
* `Code of Conduct
<http://flake8.pycqa.org/en/latest/internal/contributing.html#code-of-conduct>`_
<https://flake8.pycqa.org/en/latest/internal/contributing.html#code-of-conduct>`_
* `Getting Started Contributing
<http://flake8.pycqa.org/en/latest/internal/contributing.html>`_
<https://flake8.pycqa.org/en/latest/internal/contributing.html>`_
Maintenance
===========
Flake8 was created by Tarek Ziadé and is currently maintained by `Ian Cordasco
<http://www.coglib.com/~icordasc/>`_
<https://www.coglib.com/~icordasc/>`_

View file

@ -197,7 +197,7 @@ delivered.
.. links
.. _Python Code Quality Authority's Code of Conduct:
http://meta.pycqa.org/en/latest/code-of-conduct.html
https://meta.pycqa.org/code-of-conduct.html
.. _tox:
https://tox.readthedocs.io/

View file

@ -1,7 +1,7 @@
3.0.0 -- 2016-07-25
-------------------
- Rewrite our documentation from scratch! (http://flake8.pycqa.org)
- Rewrite our documentation from scratch! (https://flake8.pycqa.org)
- Drop explicit support for Pythons 2.6, 3.2, and 3.3.

View file

@ -569,7 +569,7 @@ Options and their Descriptions
# https://some-super-long-domain-name.com/with/some/very/long/path
url = (
'http://...'
'https://...'
)
This defaults to: ``79``

View file

@ -35,9 +35,9 @@ packages = find:
package_dir =
=src
# We document the reasoning for using ranges here:
# http://flake8.pycqa.org/en/latest/faq.html#why-does-flake8-use-ranges-for-its-dependencies
# https://flake8.pycqa.org/en/latest/faq.html#why-does-flake8-use-ranges-for-its-dependencies
# And in which releases we will update those ranges here:
# http://flake8.pycqa.org/en/latest/internal/releases.html#releasing-flake8
# https://flake8.pycqa.org/en/latest/internal/releases.html#releasing-flake8
install_requires =
mccabe>=0.7.0,<0.8.0
pycodestyle>=2.8.0,<2.9.0