Merge pull request #1558 from PyCQA/https

where possible http->https and fix links
This commit is contained in:
Anthony Sottile 2022-02-10 15:51:31 -05:00 committed by GitHub
commit 8c1ed24738
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
6 changed files with 12 additions and 12 deletions

View file

@ -1,3 +1,3 @@
Please refer to `Contributing to Flake8 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. on our website.

View file

@ -37,14 +37,14 @@ Quickstart
========== ==========
See our `quickstart documentation 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. and get started with Flake8.
Frequently Asked Questions 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. documentation.
@ -61,7 +61,7 @@ to suggest, the mailing list would be the best place for it.
Links Links
===== =====
* `Flake8 Documentation <http://flake8.pycqa.org/en/latest/>`_ * `Flake8 Documentation <https://flake8.pycqa.org/en/latest/>`_
* `GitHub Project <https://github.com/pycqa/flake8>`_ * `GitHub Project <https://github.com/pycqa/flake8>`_
@ -72,14 +72,14 @@ Links
<https://mail.python.org/mailman/listinfo/code-quality>`_ <https://mail.python.org/mailman/listinfo/code-quality>`_
* `Code of Conduct * `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 * `Getting Started Contributing
<http://flake8.pycqa.org/en/latest/internal/contributing.html>`_ <https://flake8.pycqa.org/en/latest/internal/contributing.html>`_
Maintenance Maintenance
=========== ===========
Flake8 was created by Tarek Ziadé and is currently maintained by `Ian Cordasco 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 .. links
.. _Python Code Quality Authority's Code of Conduct: .. _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: .. _tox:
https://tox.readthedocs.io/ https://tox.readthedocs.io/

View file

@ -1,7 +1,7 @@
3.0.0 -- 2016-07-25 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. - 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 # https://some-super-long-domain-name.com/with/some/very/long/path
url = ( url = (
'http://...' 'https://...'
) )
This defaults to: ``79`` This defaults to: ``79``

View file

@ -35,9 +35,9 @@ packages = find:
package_dir = package_dir =
=src =src
# We document the reasoning for using ranges here: # 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: # 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 = install_requires =
mccabe>=0.7.0,<0.8.0 mccabe>=0.7.0,<0.8.0
pycodestyle>=2.8.0,<2.9.0 pycodestyle>=2.8.0,<2.9.0