From a292f52de1aa44e34e9b72ab57d4ac608b6b5da3 Mon Sep 17 00:00:00 2001 From: Chris Wood Date: Fri, 27 Jan 2023 11:47:50 -0500 Subject: [PATCH] Try debugging CI/ubuntu-20.04 integration tests.. Does restoring the "charset_normalizer < 3" pin make the tests pass? --- setup.py | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/setup.py b/setup.py index 1974145cb..f867e901d 100644 --- a/setup.py +++ b/setup.py @@ -147,6 +147,13 @@ install_requires = [ # for pid-file support "psutil", "filelock", + + # treq needs requests, requests needs charset_normalizer, + # charset_normalizer breaks PyInstaller + # (https://github.com/Ousret/charset_normalizer/issues/253). So work around + # this by using a lower version number. Once upstream issue is fixed, or + # requests drops charset_normalizer, this can go away. + "charset_normalizer < 3", ] setup_requires = [