Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Better read the doc configuration #4935

Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
3 changes: 2 additions & 1 deletion .readthedocs.yaml
Expand Up @@ -3,9 +3,10 @@
version: 2

sphinx:
fail_on_warning: true
configuration: doc/conf.py

python:
version: 3.7
version: 3.8
install:
- requirements: doc/requirements.txt
4 changes: 4 additions & 0 deletions ChangeLog
Expand Up @@ -35,6 +35,10 @@ Release date: TBA

Closes #4751

* https is now prefered in the documentation and http://pylint.pycqa.org correctly redirect to https://pylint.pycqa.org

Closes #3802


What's New in Pylint 2.10.3?
============================
Expand Down
2 changes: 2 additions & 0 deletions doc/user_guide/message-control.rst
@@ -1,3 +1,5 @@
.. _message-control:

Messages control
================

Expand Down
6 changes: 3 additions & 3 deletions setup.cfg
Expand Up @@ -36,9 +36,9 @@ project_urls =
What's New = https://pylint.pycqa.org/en/latest/whatsnew/
Bug Tracker = https://github.com/PyCQA/pylint/issues
Discord Server = https://discord.gg/Egy6P8AMB5
Docs: User Guide = http://pylint.pycqa.org/en/latest/
Docs: Contributing = http://pylint.pycqa.org/en/latest/development_guide/contribute.html
Docs: Technical Reference = http://pylint.pycqa.org/en/latest/technical_reference/index.html
Docs: User Guide = https://pylint.pycqa.org/en/latest/
Docs: Contributing = https://pylint.pycqa.org/en/latest/development_guide/contribute.html
Docs: Technical Reference = https://pylint.pycqa.org/en/latest/technical_reference/index.html

[options]
packages = find:
Expand Down