From 0309ef1d6b8a380debe22fb5473869e400eb1dc8 Mon Sep 17 00:00:00 2001 From: Vratin Srivastava <114123331+vratins@users.noreply.github.com> Date: Mon, 25 Sep 2023 19:08:29 -0400 Subject: [PATCH] Update setup.py - forgot to close apostrophe for string - fixed --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 163144979..0add2c219 100644 --- a/setup.py +++ b/setup.py @@ -12,7 +12,7 @@ sys.exit() if sys.version_info[:2] == (2, 7) or sys.version_info[:2] <= (3, 5): - INSTALL_REQUIRES=['numpy>=1.10,<1.24', 'biopython<=1.76', 'pyparsing', 'scipy', 'mmtf-python] + INSTALL_REQUIRES=['numpy>=1.10,<1.24', 'biopython<=1.76', 'pyparsing', 'scipy', 'mmtf-python'] else: INSTALL_REQUIRES=['numpy>=1.10,<1.24', 'biopython<=1.79', 'pyparsing', 'scipy', 'setuptools', 'mmtf-python']