diff options
author | Pierre Sassoulas <pierre.sassoulas@gmail.com> | 2023-01-20 22:26:04 +0100 |
---|---|---|
committer | Pierre Sassoulas <pierre.sassoulas@gmail.com> | 2023-01-22 15:29:01 +0100 |
commit | 27f3391ab84b2df4dccb65d3f998cc96c830e8ec (patch) | |
tree | e6b445874db94a671f5928bd51ea1fe2cec7afa6 | |
parent | f1d7706db6b8b6515332865c4056fec54591cff7 (diff) | |
download | pylint-git-27f3391ab84b2df4dccb65d3f998cc96c830e8ec.tar.gz |
Upgrade astroid to 2.13.3
-rw-r--r-- | pyproject.toml | 2 | ||||
-rw-r--r-- | requirements_test_min.txt | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/pyproject.toml b/pyproject.toml index c8e7a26b6..d49b26dd0 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -39,7 +39,7 @@ dependencies = [ # Also upgrade requirements_test_min.txt. # 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.13.2,<=2.15.0-dev0", + "astroid>=2.13.3,<=2.15.0-dev0", "isort>=4.2.5,<6", "mccabe>=0.6,<0.8", "tomli>=1.1.0;python_version<'3.11'", diff --git a/requirements_test_min.txt b/requirements_test_min.txt index 4a5eff8a0..ff0b23999 100644 --- a/requirements_test_min.txt +++ b/requirements_test_min.txt @@ -1,6 +1,6 @@ -e .[testutils,spelling] # astroid dependency is also defined in pyproject.toml -astroid==2.13.2 # Pinned to a specific version for tests +astroid==2.13.3 # Pinned to a specific version for tests typing-extensions~=4.4 py~=1.11.0 pytest~=7.2 |