From 5325d1b400950f777cd701bdd5e30a9d57d2eaa8 Mon Sep 17 00:00:00 2001 From: Holger Caesar <39502217+holger-nutonomy@users.noreply.github.com> Date: Mon, 11 Jan 2021 16:51:38 +0800 Subject: [PATCH] Fix setup.py, bump version to v.1.1.2 (#542) * Bump version to v.1.1.2 * Exclude commented out requirements Co-authored-by: Holger Caesar --- setup/setup.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/setup/setup.py b/setup/setup.py index 65c9afdf..a7acc896 100644 --- a/setup/setup.py +++ b/setup/setup.py @@ -10,6 +10,8 @@ req_paths = f.read().splitlines() requirements = [] for req_path in req_paths: + if req_path.startswith('#'): + continue req_path = req_path.replace('-r ', '') with open(req_path) as f: requirements += f.read().splitlines() @@ -37,7 +39,7 @@ def get_dirlist(_rootdir): setuptools.setup( name='nuscenes-devkit', - version='1.1.1', + version='1.1.2', author='Holger Caesar, Oscar Beijbom, Qiang Xu, Varun Bankiti, Alex H. Lang, Sourabh Vora, Venice Erin Liong, ' 'Sergi Widjaja, Kiwoo Shin, Caglayan Dicle, Freddy Boulton, Whye Kit Fong, Asha Asvathaman et al.', author_email='nuscenes@motional.com',