spadix-cli 0.7.3__tar.gz → 0.7.4__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: spadix-cli
3
- Version: 0.7.3
3
+ Version: 0.7.4
4
4
  Summary: SAF friendly wrapper for colcon
5
5
  Home-page: https://safeai.ai
6
6
  Author: Serge Nikulin
@@ -16,6 +16,7 @@ Requires-Python: >=3.6
16
16
  Description-Content-Type: text/markdown
17
17
  License-File: LICENSE
18
18
  Requires-Dist: setuptools
19
+ Requires-Dist: lark
19
20
 
20
21
  # Spadix, a friendly wrapper for `colcon`
21
22
 
@@ -7,9 +7,9 @@ with open('README.md', 'r', encoding='utf-8') as fh:
7
7
 
8
8
  setuptools.setup(
9
9
  name='spadix-cli',
10
- version='0.7.3',
10
+ version='0.7.4',
11
11
  packages=setuptools.find_packages(exclude=['test']),
12
- install_requires=['setuptools'],
12
+ install_requires=['setuptools', 'lark'],
13
13
  package_data={'': []},
14
14
  author='Serge Nikulin',
15
15
  author_email='serge@safeai.ai',
@@ -26,7 +26,7 @@ from sys import stderr
26
26
 
27
27
  from lark import Lark, Transformer, v_args
28
28
 
29
- __version__ = '0.7.3'
29
+ __version__ = '0.7.4'
30
30
 
31
31
  ###############################################################################
32
32
  USAGE = """
@@ -370,7 +370,7 @@ class command_line_parser:
370
370
  self.cmd_line.extend(RM_DIRS_WIN)
371
371
  else:
372
372
  self.cmd_line.extend(RM_DIRS_UNX)
373
- self.cmd_line.extend(['docs', 'latex', 'CTCHTML', 'coverage',
373
+ self.cmd_line.extend(['latex', 'CTCHTML', 'coverage',
374
374
  self.LOG_BASE, self.INSTALL_BASE, self.BUILD_BASE])
375
375
  elif arg.startswith('clean:'):
376
376
  self.cmd_line = []
@@ -430,7 +430,7 @@ class command_line_parser:
430
430
  self.pre_cmd_line.extend(RM_DIRS_WIN)
431
431
  else:
432
432
  self.pre_cmd_line.extend(RM_DIRS_UNX)
433
- self.pre_cmd_line.extend(['docs', 'latex', 'CTCHTML', 'coverage',
433
+ self.pre_cmd_line.extend(['latex', 'CTCHTML', 'coverage',
434
434
  self.LOG_BASE, self.INSTALL_BASE, self.BUILD_BASE])
435
435
  self.cmd_line.append('build')
436
436
  self.add_console_and_merge()
@@ -531,7 +531,7 @@ class command_line_parser:
531
531
  if is_debug:
532
532
  cmake_args.append(' -DCMAKE_BUILD_TYPE=Debug')
533
533
  else:
534
- cmake_args.append(' -DCMAKE_BUILD_TYPE=RelWithDebInfo')
534
+ cmake_args.append(' -DCMAKE_BUILD_TYPE=Release')
535
535
 
536
536
  if len(cmake_args) > 1:
537
537
  self.cmd_line.extend(cmake_args)
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: spadix-cli
3
- Version: 0.7.3
3
+ Version: 0.7.4
4
4
  Summary: SAF friendly wrapper for colcon
5
5
  Home-page: https://safeai.ai
6
6
  Author: Serge Nikulin
@@ -16,6 +16,7 @@ Requires-Python: >=3.6
16
16
  Description-Content-Type: text/markdown
17
17
  License-File: LICENSE
18
18
  Requires-Dist: setuptools
19
+ Requires-Dist: lark
19
20
 
20
21
  # Spadix, a friendly wrapper for `colcon`
21
22
 
File without changes
File without changes
File without changes
File without changes