Skip to content

Commit 0cd2633

Browse files
committed
Use msgpack 1.0.5 only for Python version smaller than 3.8
1 parent bc7249f commit 0cd2633

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

pyproject.toml

+2-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,8 @@ requires-python = ">=3.7"
1515
dependencies = [
1616
"Deprecated >= 1.2.14",
1717
# We lock msgpack to 1.0.5 to support Python3.7
18-
"msgpack == 1.0.5",
18+
"msgpack >= 1.1.0; python_version >= '3.8'",
19+
"msgpack == 1.0.5; python_version < '3.8'",
1920
"python-dateutil >= 2.7.0",
2021
"typing-extensions >= 4.1.1",
2122
"zstandard >= 0.18.0",

0 commit comments

Comments
 (0)