Skip to content

Commit 6b2d93d

Browse files
committed
fix(deps): tighten pin on typing-inspect
1 parent 490fa2b commit 6b2d93d

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
@@ -6,6 +6,9 @@
66
`field_specifiers` paramter of the `dataclass_transform` decorator.
77
([#240])
88

9+
- Tighten pin on `typing-inspect` in an attempt to prevent
10+
breakage from a hypothetical major version bump.
11+
912
[#240]: https://github.com/lovasoa/marshmallow_dataclass/issues/240
1013

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

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@
5959
python_requires=">=3.6",
6060
install_requires=[
6161
"marshmallow>=3.13.0,<4.0",
62-
"typing-inspect>=0.8.0",
62+
"typing-inspect>=0.8.0,<1.0",
6363
# Need `Literal`
6464
"typing-extensions>=3.7.2; python_version < '3.8'",
6565
# Need `dataclass_transform(field_specifiers)`

0 commit comments

Comments
 (0)