Skip to content

Commit

Permalink
fix(deps): adjust pin for typeguard
Browse files Browse the repository at this point in the history
Our tests fail for various older versions or typeguard.
  • Loading branch information
dairiki committed Apr 27, 2023
1 parent 6b2d93d commit 6d581f2
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,9 @@
- Tighten pin on `typing-inspect` in an attempt to prevent
breakage from a hypothetical major version bump.

- Tighten pin on `typeguard` to exclude older versions
for which our tests fail.

[#240]: https://github.com/lovasoa/marshmallow_dataclass/issues/240

## v8.5.13 (2023-04-20)
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
"marshmallow-enum; python_version < '3.7'",
"marshmallow>=3.18.0,<4.0; python_version >= '3.7'",
],
"union": ["typeguard>=2.0.0,<4.0.0"],
"union": ["typeguard>=2.4.1,<4.0.0"],
"lint": ["pre-commit~=2.17"],
':python_version == "3.6"': ["dataclasses", "types-dataclasses<0.6.4"],
"docs": ["sphinx"],
Expand Down

0 comments on commit 6d581f2

Please sign in to comment.