From 6829ad1b6a16def50997877297d0972f33f660ee Mon Sep 17 00:00:00 2001 From: Adam Fishman Date: Fri, 29 Apr 2022 17:14:07 -0700 Subject: [PATCH] Unpinned networkx and pycollada to support new Python version. This will drop Python 2 support --- setup.py | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/setup.py b/setup.py index cd8f3b5..b701fce 100644 --- a/setup.py +++ b/setup.py @@ -5,10 +5,10 @@ requirements = [ 'lxml', # For XML DOM Tree - 'networkx==2.2', # For joint graph + 'networkx', # For joint graph 'numpy', # Numpy 'pillow', # For texture image loading - 'pycollada==0.6', # COLLADA (.dae) mesh loading via trimesh + 'pycollada', # COLLADA (.dae) mesh loading via trimesh 'pyrender>=0.1.20', # For visualization 'scipy', # For trimesh, annoyingly 'six', # Python 2/3 compatability @@ -45,7 +45,6 @@ 'Development Status :: 4 - Beta', 'License :: OSI Approved :: MIT License', 'Programming Language :: Python', - 'Programming Language :: Python :: 2.7', 'Programming Language :: Python :: 3.5', 'Programming Language :: Python :: 3.6', 'Natural Language :: English',