Skip to content

Commit 1d0f019

Browse files
committed
Require typing-inspect>=0.8.0
Recent typing-inspect is required for support a PEP 604 (A | B) union notation. (See issue lovasoa#226.)
1 parent 2fc21d2 commit 1d0f019

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

setup.py

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,10 @@
5858
classifiers=CLASSIFIERS,
5959
license="MIT",
6060
python_requires=">=3.6",
61-
install_requires=["marshmallow>=3.13.0,<4.0", "typing-inspect>=0.7.1"],
61+
install_requires=[
62+
"marshmallow>=3.13.0,<4.0",
63+
"typing-inspect>=0.8.0",
64+
],
6265
extras_require=EXTRAS_REQUIRE,
6366
package_data={"marshmallow_dataclass": ["py.typed"]},
6467
)

0 commit comments

Comments
 (0)