diff options
| author | github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> | 2023-01-08 14:21:09 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-01-08 14:21:09 +0100 |
| commit | c31e896799111a4a47154ed95ad724da0702cd8d (patch) | |
| tree | 017940cd50353cf7335669f7525114474883718d | |
| parent | b015ec0a0b76ec49fb7c21ab2685f6f5002d1c6f (diff) | |
| download | astroid-git-c31e896799111a4a47154ed95ad724da0702cd8d.tar.gz | |
Remove typing_extensions from the tests requirements (#1944) (#1946)
Also fix the version check for 'typing-extensions' dependency in order to fix #1945
(cherry picked from commit 19878a55e61ce8788db530240dba9570706a5aac)
Co-authored-by: Pierre Sassoulas <pierre.sassoulas@gmail.com>
| -rw-r--r-- | ChangeLog | 4 | ||||
| -rw-r--r-- | pyproject.toml | 2 | ||||
| -rw-r--r-- | requirements_test_min.txt | 1 |
3 files changed, 5 insertions, 2 deletions
@@ -12,6 +12,10 @@ What's New in astroid 2.13.2? ============================= Release date: TBA +* Removed version conditions on typing_extensions dependency. Removed typing_extensions from + our tests requirements as it was preventing issues to appear in our continuous integration. + + Closes #1945 What's New in astroid 2.13.1? diff --git a/pyproject.toml b/pyproject.toml index 5daeca19..537bca9a 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -36,7 +36,7 @@ dependencies = [ "wrapt>=1.14,<2;python_version>='3.11'", "wrapt>=1.11,<2;python_version<'3.11'", "typed-ast>=1.4.0,<2.0;implementation_name=='cpython' and python_version<'3.8'", - "typing-extensions>=4.0.0;python_version<'3.10'", + "typing-extensions>=4.0.0", ] dynamic = ["version"] diff --git a/requirements_test_min.txt b/requirements_test_min.txt index c8c3637a..ec8cc633 100644 --- a/requirements_test_min.txt +++ b/requirements_test_min.txt @@ -1,4 +1,3 @@ coverage~=7.0 pytest pytest-cov~=4.0 -typing-extensions>=4.0.0 |
