Skip to content
Merged
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
3 changes: 1 addition & 2 deletions .github/workflows/ci-cd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -181,7 +181,6 @@ jobs:
- 3.12
- 3.11
- "3.10"
- 3.9
no-extensions: ['', 'Y']
os: [ubuntu, macos, windows]
debug: ['', 'Y']
Expand All @@ -199,7 +198,7 @@ jobs:
- no-extensions: Y
debug: Y
include:
- pyver: pypy-3.9
- pyver: pypy-3.10
no-extensions: Y
os: ubuntu
debug: ''
Expand Down
1 change: 1 addition & 0 deletions CHANGES/1316.breaking.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Dropped support for Python 3.9 as it has reached end of life.
2 changes: 1 addition & 1 deletion multidict/_multidict_py.py
Original file line number Diff line number Diff line change
Expand Up @@ -481,7 +481,7 @@ class _HtKeys(Generic[_V]): # type: ignore[misc]
log2_size: int
usable: int

indices: array # type: ignore[type-arg] # in py3.9 array is not generic
indices: array # type: ignore[type-arg] # TODO(PY312): array[int]
entries: list[Optional[_Entry[_V]]]

@functools.cached_property
Expand Down
Loading
Loading