Skip to content

Commit 6d581f2

Browse files
committed
fix(deps): adjust pin for typeguard
Our tests fail for various older versions or typeguard.
1 parent 6b2d93d commit 6d581f2

File tree

2 files changed

+4
-1
lines changed

2 files changed

+4
-1
lines changed

CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,9 @@
99
- Tighten pin on `typing-inspect` in an attempt to prevent
1010
breakage from a hypothetical major version bump.
1111

12+
- Tighten pin on `typeguard` to exclude older versions
13+
for which our tests fail.
14+
1215
[#240]: https://github.com/lovasoa/marshmallow_dataclass/issues/240
1316

1417
## v8.5.13 (2023-04-20)

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
"marshmallow-enum; python_version < '3.7'",
2323
"marshmallow>=3.18.0,<4.0; python_version >= '3.7'",
2424
],
25-
"union": ["typeguard>=2.0.0,<4.0.0"],
25+
"union": ["typeguard>=2.4.1,<4.0.0"],
2626
"lint": ["pre-commit~=2.17"],
2727
':python_version == "3.6"': ["dataclasses", "types-dataclasses<0.6.4"],
2828
"docs": ["sphinx"],

0 commit comments

Comments
 (0)