Skip to content

Commit 5325d1b

Browse files
holger-motionalHolger Caesar
andauthored
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 <holger.caesar@motional.com>
1 parent c839839 commit 5325d1b

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

setup/setup.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,8 @@
1010
req_paths = f.read().splitlines()
1111
requirements = []
1212
for req_path in req_paths:
13+
if req_path.startswith('#'):
14+
continue
1315
req_path = req_path.replace('-r ', '')
1416
with open(req_path) as f:
1517
requirements += f.read().splitlines()
@@ -37,7 +39,7 @@ def get_dirlist(_rootdir):
3739

3840
setuptools.setup(
3941
name='nuscenes-devkit',
40-
version='1.1.1',
42+
version='1.1.2',
4143
author='Holger Caesar, Oscar Beijbom, Qiang Xu, Varun Bankiti, Alex H. Lang, Sourabh Vora, Venice Erin Liong, '
4244
'Sergi Widjaja, Kiwoo Shin, Caglayan Dicle, Freddy Boulton, Whye Kit Fong, Asha Asvathaman et al.',
4345
author_email='nuscenes@motional.com',

0 commit comments

Comments
 (0)