From a6ba060eb0f9dc1331eb2fadda4be1f335013447 Mon Sep 17 00:00:00 2001 From: Jacob Walls Date: Tue, 12 Jul 2022 07:57:04 -0400 Subject: [PATCH] docs: review suggestions MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-authored-by: Daniƫl van Noord <13665637+DanielNoord@users.noreply.github.com> --- doc/user_guide/usage/run.rst | 4 ++-- pyproject.toml | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/doc/user_guide/usage/run.rst b/doc/user_guide/usage/run.rst index 0c4357e7241..c5e84484038 100644 --- a/doc/user_guide/usage/run.rst +++ b/doc/user_guide/usage/run.rst @@ -24,8 +24,8 @@ When the ``--recursive=y`` option is used, modules and packages are also accepte This option makes ``pylint`` attempt to discover all modules (files ending with ``.py`` extension) and all explicit packages (all directories containing a ``__init__.py`` file). -As of version 2.15, ``pylint`` will also discover namespace packages but for some edge -cases that are still under development (where you might still find ``--recursive=y`` useful). +As of version 2.15, ``pylint`` will also discover namespace packages but there are some edge +cases still under development (where you might still find ``--recursive=y`` useful). Pylint **will not import** this package or module, but it does use Python internals to locate them and as such is subject to the same rules and configuration. diff --git a/pyproject.toml b/pyproject.toml index 8055279ec16..b5ed6a13bf4 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -35,9 +35,9 @@ dependencies = [ "dill>=0.2", "platformdirs>=2.2.0", # Also upgrade requirements_test_min.txt if you are bumping astroid. - # Pinned to dev of next minor update to allow editable installs, + # Pinned to dev of second minor update to allow editable installs and fix primer issues, # see https://github.com/PyCQA/astroid/issues/1341 - "astroid>=2.12.2,<=2.13.0-dev0", + "astroid>=2.12.2,<=2.14.0-dev0", "isort>=4.2.5,<6", "mccabe>=0.6,<0.8", "tomli>=1.1.0;python_version<'3.11'",