-
Notifications
You must be signed in to change notification settings - Fork 0
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
Update sphinx_rtd_theme to 1.0.0 #102
Merged
Merged
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Codecov Report
@@ Coverage Diff @@
## master #102 +/- ##
=======================================
Coverage 67.85% 67.85%
=======================================
Files 2 2
Lines 56 56
=======================================
Hits 38 38
Misses 18 18 Continue to review full report at Codecov.
|
bors r+ |
bors bot
added a commit
that referenced
this pull request
Sep 17, 2021
101: Update astroid to 2.8.0 r=aragilar a=pyup-bot This PR updates [astroid](https://pypi.org/project/astroid) from **2.6.6** to **2.8.0**. <details> <summary>Changelog</summary> ### 2.8.0 ``` ============================ Release date: 2021-09-14 * Add additional deprecation warnings in preparation for astroid 3.0 * Require attributes for some node classes with ``__init__`` call. * ``name`` (``str``) for ``Name``, ``AssignName``, ``DelName`` * ``attrname`` (``str``) for ``Attribute``, ``AssignAttr``, ``DelAttr`` * ``op`` (``str``) for ``AugAssign``, ``BinOp``, ``BoolOp``, ``UnaryOp`` * ``names`` (``list[tuple[str, str | None]]``) for ``Import`` * Support pyz imports Closes PyCQA/pylint3887 * Add ``node_ancestors`` method to ``NodeNG`` for obtaining the ancestors of nodes. * It's now possible to infer the value of comparison nodes Closes 846 * Fixed bug in inference of dataclass field calls. Closes PyCQA/pylint4963 ``` ### 2.7.3 ``` ============================ Release date: 2021-08-30 * The transforms related to a module are applied only if this module has not been explicitly authorized to be imported (i.e is not in AstroidManager.extension_package_whitelist). Solves the following issues if numpy is authorized to be imported through the `extension-pkg-allow-list` option. Closes PyCQA/pylint3342 Closes PyCQA/pylint4326 * Fixed bug in attribute inference from inside method calls. Closes PyCQA/pylint400 * Fixed bug in inference for superclass instance methods called from the class rather than an instance. Closes 1008 Closes PyCQA/pylint4377 * Fixed bug in inference of chained attributes where a subclass had an attribute that was an instance of its superclass. Closes PyCQA/pylint4220 * Adds a brain for the ctypes module. Closes PyCQA/pylint4896 * When processing dataclass attributes, exclude the same type hints from abc.collections as from typing. Closes PyCQA/pylint4895 * Apply dataclass inference to pydantic's dataclasses. Closes PyCQA/pylint4899 ``` ### 2.7.2 ``` ============================ Release date: 2021-08-20 * ``BaseContainer`` is now public, and will replace ``_BaseContainer`` completely in astroid 3.0. * The call cache used by inference functions produced by ``inference_tip`` can now be cleared via ``clear_inference_tip_cache``. * ``astroid.const.BUILTINS`` and ``astroid.bases.BUILTINS`` are not used internally anymore and will be removed in astroid 3.0. Simply replace this by the string 'builtins' for better performances and clarity. * Add inference for dataclass initializer method. Closes PyCQA/pylint3201 ``` ### 2.7.1 ``` ============================ Release date: 2021-08-16 * When processing dataclass attributes, only do typing inference on collection types. Support for instantiating other typing types is left for the future, if desired. Closes 1129 * Fixed LookupMixIn missing from ``astroid.node_classes``. ``` ### 2.7.0 ``` ============================ Release date: 2021-08-15 * Import from ``astroid.node_classes`` and ``astroid.scoped_nodes`` has been deprecated in favor of ``astroid.nodes``. Only the imports from ``astroid.nodes`` will work in astroid 3.0.0. * Add support for arbitrary Enum subclass hierachies Closes PyCQA/pylint533 Closes PyCQA/pylint2224 Closes PyCQA/pylint2626 * Add inference tips for dataclass attributes, including dataclasses.field calls. Also add support for InitVar. Closes PyCQA/pylint2600 Closes PyCQA/pylint2698 Closes PyCQA/pylint3405 Closes PyCQA/pylint3794 * Adds a brain that deals with dynamic import of `IsolatedAsyncioTestCase` class of the `unittest` module. Closes PyCQA/pylint4060 ``` </details> <details> <summary>Links</summary> - PyPI: https://pypi.org/project/astroid - Changelog: https://pyup.io/changelogs/astroid/ - Repo: https://github.com/PyCQA/astroid </details> 102: Update sphinx_rtd_theme to 1.0.0 r=aragilar a=pyup-bot This PR updates [sphinx_rtd_theme](https://pypi.org/project/sphinx_rtd_theme) from **0.5.2** to **1.0.0**. *The bot wasn't able to find a changelog for this release. [Got an idea?](https://github.com/pyupio/changelogs/issues/new)* <details> <summary>Links</summary> - PyPI: https://pypi.org/project/sphinx-rtd-theme - Repo: https://github.com/readthedocs/sphinx_rtd_theme </details> Co-authored-by: pyup-bot <[email protected]>
Build failed (retrying...):
|
bors bot
added a commit
that referenced
this pull request
Sep 17, 2021
102: Update sphinx_rtd_theme to 1.0.0 r=aragilar a=pyup-bot This PR updates [sphinx_rtd_theme](https://pypi.org/project/sphinx_rtd_theme) from **0.5.2** to **1.0.0**. *The bot wasn't able to find a changelog for this release. [Got an idea?](https://github.com/pyupio/changelogs/issues/new)* <details> <summary>Links</summary> - PyPI: https://pypi.org/project/sphinx-rtd-theme - Repo: https://github.com/readthedocs/sphinx_rtd_theme </details> Co-authored-by: pyup-bot <[email protected]>
Timed out. |
bors r+ |
bors bot
added a commit
that referenced
this pull request
Oct 28, 2021
100: Update pytest to 6.2.5 r=aragilar a=pyup-bot This PR updates [pytest](https://pypi.org/project/pytest) from **6.2.4** to **6.2.5**. <details> <summary>Changelog</summary> ### 6.2.5 ``` ========================= Trivial/Internal Changes ------------------------ - `8494 <https://github.com/pytest-dev/pytest/issues/8494>`_: Python 3.10 is now supported. - `9040 <https://github.com/pytest-dev/pytest/issues/9040>`_: Enable compatibility with ``pluggy 1.0`` or later. ``` </details> <details> <summary>Links</summary> - PyPI: https://pypi.org/project/pytest - Changelog: https://pyup.io/changelogs/pytest/ - Homepage: https://docs.pytest.org/en/latest/ </details> 102: Update sphinx_rtd_theme to 1.0.0 r=aragilar a=pyup-bot This PR updates [sphinx_rtd_theme](https://pypi.org/project/sphinx_rtd_theme) from **0.5.2** to **1.0.0**. *The bot wasn't able to find a changelog for this release. [Got an idea?](https://github.com/pyupio/changelogs/issues/new)* <details> <summary>Links</summary> - PyPI: https://pypi.org/project/sphinx-rtd-theme - Repo: https://github.com/readthedocs/sphinx_rtd_theme </details> 104: Update pylint to 2.11.1 r=aragilar a=pyup-bot This PR updates [pylint](https://pypi.org/project/pylint) from **2.9.6** to **2.11.1**. <details> <summary>Changelog</summary> ### 2.11.1 ``` ============================ Release date: 2021-09-16 .. Put bug fixes that should not wait for a new minor version here * ``unspecified-encoding`` now checks the encoding of ``pathlib.Path()`` correctly Closes 5017 ``` ### 2.11.0 ``` ============================ Release date: 2021-09-16 * The python3 porting mode checker and it's ``py3k`` option were removed. You can still find it in older pylint versions. * ``raising-bad-type`` is now properly emitted when raising a string * Added new extension ``SetMembershipChecker`` with ``use-set-for-membership`` check: Emitted when using an in-place defined ``list`` or ``tuple`` to do a membership test. ``sets`` are better optimized for that. Closes 4776 * Added ``py-version`` config key (if ``[MASTER]`` section). Used for version dependant checks. Will default to whatever Python version pylint is executed with. * ``CodeStyleChecker`` * Added ``consider-using-assignment-expr``: Emitted when an assignment is directly followed by an if statement and both can be combined by using an assignment expression ``:=``. Requires Python 3.8 Closes 4862 * Added ``consider-using-f-string``: Emitted when .format() or '%' is being used to format a string. Closes 3592 * Fix false positive for ``consider-using-with`` if a context manager is assigned to a variable in different paths of control flow (e. g. if-else clause). Closes 4751 * https is now prefered in the documentation and http://pylint.pycqa.org correctly redirect to https://pylint.pycqa.org Closes 3802 * Fix false positive for ``function-redefined`` for simple type annotations Closes 4936 * Fix false positive for ``protected-access`` if a protected member is used in type hints of function definitions * Fix false positive ``dict-iter-missing-items`` for dictionaries only using tuples as keys Closes 3282 * The ``unspecified-encoding`` checker now also checks calls to ``pathlib.Path().read_text()`` and ``pathlib.Path().write_text()`` Closes 4945 * Fix false positive ``superfluous-parens`` for tuples created with inner tuples Closes 4907 * Fix false positive ``unused-private-member`` for accessing attributes in a class using ``cls`` Closes 4849 * Fix false positive ``unused-private-member`` for private staticmethods accessed in classmethods. Closes 4849 * Extended ``consider-using-in`` check to work for attribute access. * Setting ``min-similarity-lines`` to 0 now makes the similarty checker stop checking for duplicate code Closes 4901 * Fix a bug where pylint complained if the cache's parent directory does not exist Closes 4900 * The ``global-variable-not-assigned`` checker now catches global variables that are never reassigned in a local scope and catches (reassigned) functions Closes 1375 Closes 330 * Fix false positives for invalid-all-format that are lists or tuples at runtime Closes 4711 * Fix ``no-self-use`` and ``docparams extension`` for async functions and methods. * Add documentation for ``pyreverse`` and ``symilar`` Closes 4616 * Non symbolic messages with the wrong capitalisation now correctly trigger ``use-symbolic-message-instead`` Closes 5000 * The ``consider-iterating-dictionary`` checker now also considers membership checks Closes 4069 * The ``invalid-name`` message is now more detailed when using multiple naming style regexes. ``` ### 2.10.2 ``` ============================ Release date: 2021-08-21 * We now use platformdirs instead of appdirs since the latter is not maintained. Closes 4886 * Fix a crash in the checker raising ``shallow-copy-environ`` when failing to infer on ``copy.copy`` Closes 4891 ``` ### 2.10.1 ``` ============================ Release date: 2021-08-20 * pylint does not crash when PYLINT_HOME does not exist. Closes 4883 ``` ### 2.10.0 ``` ============================ Release date: 2021-08-20 * pyreverse: add option to produce colored output. Closes 4488 * pyreverse: add output in PlantUML format. Closes 4498 * ``consider-using-with`` is no longer triggered if a context manager is returned from a function. Closes 4748 * pylint does not crash with a traceback anymore when a file is problematic. It creates a template text file for opening an issue on the bug tracker instead. The linting can go on for other non problematic files instead of being impossible. * pyreverse: Show class has-a relationships inferred from the type-hint Closes 4744 * Fixed a crash when importing beyond the top level package during ``import-error`` message creation Closes 4775 * Added ``ignored-parents`` option to the design checker to ignore specific classes from the ``too-many-ancestors`` check (R0901). Partially closes 3057 * Added ``unspecified-encoding``: Emitted when open() is called without specifying an encoding Closes 3826 * Improved the Similarity checker performance. Fix issue with ``--min-similarity-lines`` used with ``--jobs``. Close 4120 Close 4118 * Don't emit ``no-member`` error if guarded behind if statement. Ref 1162 Closes 1990 Closes 4168 * The default for ``PYLINTHOME`` is now the standard ``XDG_CACHE_HOME``, and pylint now uses ``appdirs``. Closes 3878 * Added ``use-list-literal``: Emitted when ``list()`` is called with no arguments instead of using ``[]`` Closes 4365 * Added ``use-dict-literal``: Emitted when ``dict()`` is called with no arguments instead of using ``{}`` Closes 4365 * Added optional extension ``consider-ternary-expression``: Emitted whenever a variable is assigned in both branches of an if/else block. Closes 4366 * Added optional extension ``while-used``: Emitted whenever a ``while`` loop is used. Closes 4367 * Added ``forgotten-debug-statement``: Emitted when ``breakpoint``, ``pdb.set_trace`` or ``sys.breakpointhook`` calls are found Closes 3692 * Fix false-positive of ``unused-private-member`` when using nested functions in a class Closes 4673 * Fix crash for ``unused-private-member`` that occurred with nested attributes. Closes 4755 * Fix a false positive for ``unused-private-member`` with class names Closes 4681 * Fix false positives for ``superfluous-parens`` with walrus operator, ternary operator and inside list comprehension. Closes 2818 Closes 3249 Closes 3608 Closes 4346 * Added ``format-string-without-interpolation`` checker: Emitted when formatting is applied to a string without any variables to be replaced Closes 4042 * Refactor of ``--list-msgs`` & ``--list-msgs-enabled``: both options now show whether messages are emittable with the current interpreter. Closes 4778 * Fix false negative for ``used-before-assignment`` when the variable is assigned in an exception handler, but used outside of the handler. Closes 626 * Added ``disable-next`` option: allows using ` pylint: disable-next=msgid` to disable a message for the following line Closes 1682 * Added ``redundant-u-string-prefix`` checker: Emitted when the u prefix is added to a string Closes 4102 * Fixed ``cell-var-from-loop`` checker: handle cell variables in comprehensions within functions, and function default argument expressions. Also handle basic variable shadowing. Closes 2846 Closes 3107 * Fixed bug with ``cell-var-from-loop`` checker: it no longer has false negatives when both ``unused-variable`` and ``used-before-assignment`` are disabled. * Fix false postive for ``invalid-all-format`` if the list or tuple builtin functions are used Closes 4711 * Config files can now contain environment variables Closes 3839 * Fix false-positive ``used-before-assignment`` with an assignment expression in a ``Return`` node Closes 4828 * Added ``use-sequence-for-iteration``: Emitted when iterating over an in-place defined ``set``. * ``CodeStyleChecker`` * Limit ``consider-using-tuple`` to be emitted only for in-place defined ``lists``. * Emit ``consider-using-tuple`` even if list contains a ``starred`` expression. * Ignore decorators lines by similarities checker when ignore signatures flag enabled Closes 4839 * Allow ``true`` and ``false`` values in ``pylintrc`` for better compatibility with ``toml`` config. * Class methods' signatures are ignored the same way as functions' with similarities "ignore-signatures" option enabled Closes 4653 * Improve performance when inferring ``Call`` nodes, by utilizing caching. * Improve error message for invalid-metaclass when the node is an Instance. ``` </details> <details> <summary>Links</summary> - PyPI: https://pypi.org/project/pylint - Changelog: https://pyup.io/changelogs/pylint/ </details> Co-authored-by: pyup-bot <[email protected]>
bors r+ |
Build succeeded: |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
This PR updates sphinx_rtd_theme from 0.5.2 to 1.0.0.
The bot wasn't able to find a changelog for this release. Got an idea?
Links