simple-carla 2.3.2__tar.gz → 2.3.3__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,11 +1,10 @@
1
- Metadata-Version: 2.4
1
+ Metadata-Version: 2.1
2
2
  Name: simple_carla
3
- Version: 2.3.2
3
+ Version: 2.3.3
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
7
7
  Classifier: License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)
8
- License-File: LICENSE
9
8
  Requires-Dist: numpy
10
9
  Requires-Dist: log_soso
11
10
  Requires-Dist: PyQt5
@@ -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.2"
21
+ current_version = "2.3.3"
22
22
  version_pattern = "MAJOR.MINOR.PATCH"
23
23
  commit_message = "Bump version {old_version} -> {new_version}"
24
24
  commit = true
@@ -1,6 +1,6 @@
1
1
  # simple_carla/__init__.py
2
2
  #
3
- # Copyright 2024 liyang <liyang@veronica>
3
+ # Copyright 2024 Leon Dionne <ldionne@dridesign.sh.cn>
4
4
  #
5
5
  # This program is free software; you can redistribute it and/or modify
6
6
  # it under the terms of the GNU General Public License as published by
@@ -240,7 +240,7 @@ from carla_backend import (
240
240
  )
241
241
 
242
242
 
243
- __version__ = "2.3.2"
243
+ __version__ = "2.3.3"
244
244
 
245
245
 
246
246
  # -------------------------------------------------------------------
@@ -1,6 +1,6 @@
1
1
  # simple_carla/plugin_dialog.py
2
2
  #
3
- # Copyright 2024 liyang <liyang@veronica>
3
+ # Copyright 2024 Leon Dionne <ldionne@dridesign.sh.cn>
4
4
  #
5
5
  """
6
6
  Provides a means to use Carla's plugin dialog to compile a plugin's
@@ -18,7 +18,7 @@ class CarlaPluginDialog():
18
18
  """
19
19
  Wrapper for Carla's native plugin selection dialog.
20
20
  This is a singleton class. You may call the constructor repatedly, and it will
21
- usethe same instance for the life of the program.
21
+ use the same instance for the life of the program.
22
22
  """
23
23
  _instance = None
24
24
  _carla_felib = None
@@ -1,6 +1,6 @@
1
1
  # simple_carla/qt.py
2
2
  #
3
- # Copyright 2024 liyang <liyang@veronica>
3
+ # Copyright 2024 Leon Dionne <ldionne@dridesign.sh.cn>
4
4
  #
5
5
  # This program is free software; you can redistribute it and/or modify
6
6
  # it under the terms of the GNU General Public License as published by
@@ -1,6 +1,6 @@
1
1
  # simple_carla/tests/carla.py
2
2
  #
3
- # Copyright 2024 liyang <liyang@veronica>
3
+ # Copyright 2024 Leon Dionne <ldionne@dridesign.sh.cn>
4
4
  #
5
5
  import logging
6
6
  from time import sleep
@@ -1,6 +1,6 @@
1
1
  # simple_carla/tests/qt_carla.py
2
2
  #
3
- # Copyright 2024 liyang <liyang@veronica>
3
+ # Copyright 2024 Leon Dionne <ldionne@dridesign.sh.cn>
4
4
  #
5
5
  import logging
6
6
  from PyQt5.QtCore import Qt, QCoreApplication, QObject, pyqtSignal, pyqtSlot, QTimer
File without changes
File without changes
File without changes