Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
strategy:
fail-fast: false
matrix:
python-version: ["3.6", "3.7", "3.8", "3.9", "3.10", "3.11-dev"]
python-version: ["3.6", "3.7.1", "3.7", "3.8", "3.9", "3.10", "3.11-dev"]

runs-on: ubuntu-latest

Expand Down
5 changes: 5 additions & 0 deletions typing_extensions/CHANGELOG
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
# Unreleased

- Fix importing `typing_extensions` on Python 3.7.0 and 3.7.1. Patch by
Nikita Sobolev (@sobolevn).

# Release 4.1.0 (February 12, 2022)

- Runtime support for PEP 646, adding `typing_extensions.TypeVarTuple`
Expand Down
2 changes: 1 addition & 1 deletion typing_extensions/src/typing_extensions.py
Original file line number Diff line number Diff line change
Expand Up @@ -140,7 +140,7 @@ def _collect_type_vars(types, typevar_types=None):
if (
isinstance(t, typevar_types) and
t not in tvars and
not isinstance(t, _UnpackAlias)
not _is_unpack(t)
):
tvars.append(t)
if _should_collect_from_parameters(t):
Expand Down