simple-carla 2.3.0__tar.gz → 2.3.1__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.
- {simple_carla-2.3.0 → simple_carla-2.3.1}/PKG-INFO +1 -1
- {simple_carla-2.3.0 → simple_carla-2.3.1}/pyproject.toml +1 -1
- {simple_carla-2.3.0 → simple_carla-2.3.1}/simple_carla/__init__.py +1 -1
- {simple_carla-2.3.0 → simple_carla-2.3.1}/tests/carla.py +5 -8
- {simple_carla-2.3.0 → simple_carla-2.3.1}/.gitignore +0 -0
- {simple_carla-2.3.0 → simple_carla-2.3.1}/LICENSE +0 -0
- {simple_carla-2.3.0 → simple_carla-2.3.1}/README.md +0 -0
- {simple_carla-2.3.0 → simple_carla-2.3.1}/simple_carla/plugin_dialog.py +0 -0
- {simple_carla-2.3.0 → simple_carla-2.3.1}/simple_carla/qt.py +0 -0
- {simple_carla-2.3.0 → simple_carla-2.3.1}/simple_carla/scripts/__init__.py +0 -0
- {simple_carla-2.3.0 → simple_carla-2.3.1}/simple_carla/scripts/sc_plugin_def.py +0 -0
- {simple_carla-2.3.0 → simple_carla-2.3.1}/tests/qt_carla.py +0 -0
@@ -18,7 +18,7 @@ build-backend = "flit_core.buildapi"
|
|
18
18
|
sc-plugin-def = "simple_carla.scripts.sc_plugin_def:main"
|
19
19
|
|
20
20
|
[bumpver]
|
21
|
-
current_version = "2.3.
|
21
|
+
current_version = "2.3.1"
|
22
22
|
version_pattern = "MAJOR.MINOR.PATCH"
|
23
23
|
commit_message = "Bump version {old_version} -> {new_version}"
|
24
24
|
commit = true
|
@@ -19,13 +19,13 @@ class TestApp:
|
|
19
19
|
carla.on_engine_started(self.carla_started)
|
20
20
|
carla.on_engine_stopped(self.carla_stopped)
|
21
21
|
if not carla.engine_init():
|
22
|
-
|
23
|
-
if
|
24
|
-
raise Exception("Could not
|
22
|
+
audio_error = carla.get_last_error()
|
23
|
+
if audio_error:
|
24
|
+
raise Exception("Could not start carla; possible reasons:\n%s" % audio_error)
|
25
25
|
else:
|
26
|
-
raise Exception('Could not
|
26
|
+
raise Exception('Could not start carla')
|
27
27
|
|
28
|
-
def carla_started(self,
|
28
|
+
def carla_started(self, *_):
|
29
29
|
logging.debug('======= Engine started ======== ')
|
30
30
|
self.meter = EBUMeter()
|
31
31
|
self.meter.on_ready(self.meter_ready)
|
@@ -40,9 +40,6 @@ class TestApp:
|
|
40
40
|
assert(Carla.instance is Carla(APPLICATION_NAME))
|
41
41
|
|
42
42
|
def wait_ready(self):
|
43
|
-
"""
|
44
|
-
Blocks until sig_ready received from MeteringWorker.
|
45
|
-
"""
|
46
43
|
watchdog = 0
|
47
44
|
while not self.ready:
|
48
45
|
watchdog += 1
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|