Skip to content

Commit

Permalink
Fix setup.py, bump version to v.1.1.2 (#542)
Browse files Browse the repository at this point in the history
* Bump version to v.1.1.2

* Exclude commented out requirements

Co-authored-by: Holger Caesar <[email protected]>
  • Loading branch information
holger-motional and Holger Caesar authored Jan 11, 2021
1 parent c839839 commit 5325d1b
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion setup/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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()
Expand Down Expand Up @@ -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='[email protected]',
Expand Down

0 comments on commit 5325d1b

Please sign in to comment.