From 1e6b4d5dd4b2920957c81d0835427a8c015c90cd Mon Sep 17 00:00:00 2001 From: Tyler Goodlet Date: Wed, 3 Aug 2022 14:28:21 -0400 Subject: [PATCH] Drop `msgspec` min pin --- setup.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/setup.py b/setup.py index 1b3b598..f27a20d 100755 --- a/setup.py +++ b/setup.py @@ -55,6 +55,9 @@ setup( 'colorlog', 'wrapt', + # serialization + 'msgspec', + # pip ref docs on these specs: # https://pip.pypa.io/en/stable/reference/requirement-specifiers/#examples # and pep: @@ -70,9 +73,6 @@ setup( # we need a specific patch on master atm. 'pdbpp @ git+https://github.com/pdbpp/pdbpp@76c4be5#egg=pdbpp ; python_version > "3.9"', # noqa: E501 - # serialization - 'msgspec >= "0.4.0"' - ], tests_require=['pytest'], python_requires=">=3.9",