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
2 changes: 2 additions & 0 deletions ChangeLog
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,8 @@ Release date: TBA

Closes #1737

* Bumped minimum requirement of ``wrapt`` to 1.14 on Python 3.11.

* Don't add dataclass fields annotated with ``KW_ONLY`` to the list of fields.

Refs PyCQA/pylint#5767
Expand Down
3 changes: 2 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,8 @@ classifiers = [
requires-python = ">=3.7.2"
dependencies = [
"lazy_object_proxy>=1.4.0",
"wrapt>=1.11,<2",
"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>=3.10;python_version<'3.10'",
]
Expand Down