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.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: simple_carla
3
- Version: 2.3.0
3
+ Version: 2.3.1
4
4
  Summary: An easy-to-use, object-oriented interface to the carla plugin host.
5
5
  Author-email: Leon Dionne <ldionne@dridesign.sh.cn>
6
6
  Description-Content-Type: text/markdown
@@ -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.0"
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
@@ -240,7 +240,7 @@ from carla_backend import (
240
240
  )
241
241
 
242
242
 
243
- __version__ = "2.3.0"
243
+ __version__ = "2.3.1"
244
244
 
245
245
 
246
246
  # -------------------------------------------------------------------
@@ -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
- audioError = carla.get_last_error()
23
- if audioError:
24
- raise Exception("Could not connect to JACK; possible reasons:\n%s" % audioError)
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 connect to JACK')
26
+ raise Exception('Could not start carla')
27
27
 
28
- def carla_started(self, plugin_count, process_mode, transport_mode, buffer_size, sample_rate, driver_name):
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