From 8b44ec7a5d98f659fe01bbc45e58fe7e6ab22463 Mon Sep 17 00:00:00 2001 From: Guillermo Rodriguez Date: Mon, 27 Jul 2020 21:10:04 -0300 Subject: [PATCH] Actually dropping the cloudpickle dependency from setup.py --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 7f811cd..4f56472 100755 --- a/setup.py +++ b/setup.py @@ -39,7 +39,7 @@ setup( ], install_requires=[ 'msgpack', 'trio>0.8', 'async_generator', 'colorlog', 'wrapt', - 'trio_typing', 'cloudpickle', + 'trio_typing', ], tests_require=['pytest'], python_requires=">=3.7",