From 925d5c1cebe8f037bb0b290e33400b7b373fef6a Mon Sep 17 00:00:00 2001 From: Tyler Goodlet Date: Mon, 11 Jul 2022 11:19:44 -0400 Subject: [PATCH] Pin to specific `pdbppp` master commit --- setup.py | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/setup.py b/setup.py index 7492d63..90f84c5 100755 --- a/setup.py +++ b/setup.py @@ -59,18 +59,18 @@ setup( # https://pip.pypa.io/en/stable/reference/requirement-specifiers/#examples # and pep: # https://peps.python.org/pep-0440/#version-specifiers - 'pdbpp <= 0.10.1; python_version < "3.10"', - # 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 ; python_version >= '3.10'", # noqa: E501 - # windows deps workaround for ``pdbpp`` # https://github.com/pdbpp/pdbpp/issues/498 # https://github.com/pdbpp/fancycompleter/issues/37 'pyreadline3 ; platform_system == "Windows"', + # 3.10 has an outstanding unreleased issue and `pdbpp` itself + # pins to patched forks of its own dependencies as well..and + # 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"' @@ -94,8 +94,8 @@ setup( "License :: OSI Approved :: GNU Affero General Public License v3 or later (AGPLv3+)", "Programming Language :: Python :: Implementation :: CPython", "Programming Language :: Python :: 3 :: Only", - "Programming Language :: Python :: 3.10", "Programming Language :: Python :: 3.9", + "Programming Language :: Python :: 3.10", "Intended Audience :: Science/Research", "Intended Audience :: Developers", "Topic :: System :: Distributed Computing",