From 816bea7971a6702ac9eb2fddeb2179c2929fe0d4 Mon Sep 17 00:00:00 2001 From: Jacob Walls Date: Sat, 8 Jul 2023 07:36:44 -0400 Subject: [PATCH] Apply hotfix for @raise_if_nothing_inferred --- pyproject.toml | 2 +- requirements_test_min.txt | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 295090382..862dbf9bd 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/pylint-dev/astroid/issues/1341 - "astroid>=3.0.0a6,<=3.1.0-dev0", + "astroid @ git+https://github.com/pylint-dev/astroid.git@a7ab0880dea776e45c4c7e440298c4041d945e6d", "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 fefba22cf..f6bb6003b 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==3.0.0a6 # Pinned to a specific version for tests +astroid @ git+https://github.com/pylint-dev/astroid.git@a7ab0880dea776e45c4c7e440298c4041d945e6d typing-extensions~=4.7 py~=1.11.0 pytest~=7.4