diff options
author | Marc Mueller <30130371+cdce8p@users.noreply.github.com> | 2023-02-01 01:14:32 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-02-01 01:14:32 +0100 |
commit | 1b5bba4508507da46a38aaea996976660b7ccca1 (patch) | |
tree | c32805bc2ce72d7625e32689e4b193e1c6e38cc7 /pyproject.toml | |
parent | c70285dfdfd22668de9cab7a85ef205fafa57aaf (diff) | |
download | pylint-git-1b5bba4508507da46a38aaea996976660b7ccca1.tar.gz |
Fix issues with new typing Union syntax (Py310) (#8122)
* Fix issues with new typing Union syntax (Py310)
* Upgrade astroid to 2.14.1
Diffstat (limited to 'pyproject.toml')
-rw-r--r-- | pyproject.toml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pyproject.toml b/pyproject.toml index d49b26dd0..3fa73da29 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.3,<=2.15.0-dev0", + "astroid>=2.14.1,<=2.16.0-dev0", "isort>=4.2.5,<6", "mccabe>=0.6,<0.8", "tomli>=1.1.0;python_version<'3.11'", |