Skip to content

Commit

Permalink
Remove typing_extensions from the tests requirements (#1944) (#1946)
Browse files Browse the repository at this point in the history
Also fix the version check for 'typing-extensions' dependency in order to fix #1945

(cherry picked from commit 19878a5)

Co-authored-by: Pierre Sassoulas <pierre.sassoulas@gmail.com>
  • Loading branch information
github-actions[bot] and Pierre-Sassoulas authored Jan 8, 2023
1 parent b015ec0 commit c31e896
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 2 deletions.
4 changes: 4 additions & 0 deletions ChangeLog
Original file line number Diff line number Diff line change
Expand Up @@ -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?
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"]

Expand Down
1 change: 0 additions & 1 deletion requirements_test_min.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
coverage~=7.0
pytest
pytest-cov~=4.0
typing-extensions>=4.0.0

0 comments on commit c31e896

Please sign in to comment.