Skip to content

Commit b69fb67

Browse files
Don't install msgspec on PyPy (#507)
`msgspec` is [only supported on CPython](jcrist/msgspec#22 (comment)). This creates an issue when installing with: `pdm install -G :all`.
1 parent d110fda commit b69fb67

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pyproject.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,7 @@ bson = [
9595
"pymongo>=4.4.0",
9696
]
9797
msgspec = [
98-
"msgspec>=0.18.5",
98+
"msgspec>=0.18.5; implementation_name == \"cpython\"",
9999
]
100100

101101
[tool.pytest.ini_options]

0 commit comments

Comments
 (0)