Skip to content

Commit c31e896

Browse files
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 19878a5) Co-authored-by: Pierre Sassoulas <[email protected]>
1 parent b015ec0 commit c31e896

File tree

3 files changed

+5
-2
lines changed

3 files changed

+5
-2
lines changed

ChangeLog

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,10 @@ What's New in astroid 2.13.2?
1212
=============================
1313
Release date: TBA
1414

15+
* Removed version conditions on typing_extensions dependency. Removed typing_extensions from
16+
our tests requirements as it was preventing issues to appear in our continuous integration.
17+
18+
Closes #1945
1519

1620

1721
What's New in astroid 2.13.1?

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ dependencies = [
3636
"wrapt>=1.14,<2;python_version>='3.11'",
3737
"wrapt>=1.11,<2;python_version<'3.11'",
3838
"typed-ast>=1.4.0,<2.0;implementation_name=='cpython' and python_version<'3.8'",
39-
"typing-extensions>=4.0.0;python_version<'3.10'",
39+
"typing-extensions>=4.0.0",
4040
]
4141
dynamic = ["version"]
4242

requirements_test_min.txt

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
11
coverage~=7.0
22
pytest
33
pytest-cov~=4.0
4-
typing-extensions>=4.0.0

0 commit comments

Comments
 (0)