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.
- {simple_carla-2.3.2 → simple_carla-2.3.3}/PKG-INFO +2 -3
- {simple_carla-2.3.2 → simple_carla-2.3.3}/pyproject.toml +1 -1
- {simple_carla-2.3.2 → simple_carla-2.3.3}/simple_carla/__init__.py +2 -2
- {simple_carla-2.3.2 → simple_carla-2.3.3}/simple_carla/plugin_dialog.py +2 -2
- {simple_carla-2.3.2 → simple_carla-2.3.3}/simple_carla/qt.py +1 -1
- {simple_carla-2.3.2 → simple_carla-2.3.3}/tests/carla.py +1 -1
- {simple_carla-2.3.2 → simple_carla-2.3.3}/tests/qt_carla.py +1 -1
- {simple_carla-2.3.2 → simple_carla-2.3.3}/.gitignore +0 -0
- {simple_carla-2.3.2 → simple_carla-2.3.3}/LICENSE +0 -0
- {simple_carla-2.3.2 → simple_carla-2.3.3}/README.md +0 -0
- {simple_carla-2.3.2 → simple_carla-2.3.3}/simple_carla/scripts/__init__.py +0 -0
- {simple_carla-2.3.2 → simple_carla-2.3.3}/simple_carla/scripts/sc_plugin_def.py +0 -0
@@ -1,11 +1,10 @@
|
|
1
|
-
Metadata-Version: 2.
|
1
|
+
Metadata-Version: 2.1
|
2
2
|
Name: simple_carla
|
3
|
-
Version: 2.3.
|
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.
|
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
|
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.
|
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
|
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
|
-
|
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
|
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
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|