From 3d334200567478694a0571d3fc1f58ac1e3c2da1 Mon Sep 17 00:00:00 2001 From: Aleksandr Prilipko <31770101+zverozabr@users.noreply.github.com> Date: Thu, 18 Nov 2021 12:44:37 +0700 Subject: [PATCH] Remove `pathlib` from `setup.py`; fix build issues (#86) * Remove `pathlib` from `setup.py`; fix build issues `pathlib` is now included in Python 3.4+ and is no longer required to declare as a dependency. --- setup.py | 1 - 1 file changed, 1 deletion(-) diff --git a/setup.py b/setup.py index 3e53dad..78aa861 100644 --- a/setup.py +++ b/setup.py @@ -59,7 +59,6 @@ install_requires=['networkx>=2.1', 'numpy', 'pandas', - 'pathlib', 'scipy', 'scikit-image>=0.14.5', 'deepcell-toolbox~=0.10.0'],