From b700dc34a8b749d5b6593ada10f66116ed49134a Mon Sep 17 00:00:00 2001 From: Tyler Goodlet Date: Tue, 12 Jul 2022 10:10:39 -0400 Subject: [PATCH] Use `pyreadline3` on windows for py3.10 --- setup.py | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/setup.py b/setup.py index 3aa1b96..6f45356 100755 --- a/setup.py +++ b/setup.py @@ -51,13 +51,17 @@ setup( 'tricycle', 'trio_typing', + # serialization + 'msgpack>=1.0.3', + # tooling 'colorlog', 'wrapt', 'pdbpp', - - # serialization - 'msgpack>=1.0.3', + # windows deps workaround for ``pdbpp`` + # https://github.com/pdbpp/pdbpp/issues/498 + # https://github.com/pdbpp/fancycompleter/issues/37 + 'pyreadline3 ; platform_system == "Windows"', ], extras_require={