From 418e74eee74ca4739236f53d6be6c4c5fa7f6155 Mon Sep 17 00:00:00 2001 From: Tyler Goodlet Date: Tue, 31 May 2022 11:22:26 -0400 Subject: [PATCH] Pin to `pdbpp` upstream master, 3.10 problem? See issues: - https://github.com/pdbpp/pdbpp/issues/480 - https://github.com/pdbpp/pdbpp/pull/482 --- setup.py | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 39732c9..71a5ee0 100755 --- a/setup.py +++ b/setup.py @@ -54,12 +54,16 @@ setup( # tooling 'colorlog', 'wrapt', - 'pdbpp', # windows deps workaround for ``pdbpp`` # https://github.com/pdbpp/pdbpp/issues/498 # https://github.com/pdbpp/fancycompleter/issues/37 'pyreadline3 ; platform_system == "Windows"', + 'pdbpp', + # 3.10 has an outstanding unreleased issue and `pdbpp` itself + # pins to patched forks of its own dependencies as well. + "pdbpp @ git+https://github.com/pdbpp/pdbpp@master#egg=pdbpp", # noqa: E501 + # serialization 'msgspec >= "0.4.0"'