superset-showtime 0.2.8__py3-none-any.whl → 0.4.2__py3-none-any.whl
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.
Potentially problematic release.
This version of superset-showtime might be problematic. Click here for more details.
- showtime/__init__.py +3 -2
- showtime/cli.py +276 -1159
- showtime/core/aws.py +30 -26
- showtime/core/github.py +10 -6
- showtime/core/github_messages.py +16 -13
- showtime/core/pull_request.py +536 -0
- showtime/core/show.py +279 -0
- {superset_showtime-0.2.8.dist-info → superset_showtime-0.4.2.dist-info}/METADATA +56 -121
- superset_showtime-0.4.2.dist-info/RECORD +16 -0
- showtime/commands/__init__.py +0 -1
- showtime/commands/start.py +0 -40
- showtime/core/circus.py +0 -279
- superset_showtime-0.2.8.dist-info/RECORD +0 -17
- {superset_showtime-0.2.8.dist-info → superset_showtime-0.4.2.dist-info}/WHEEL +0 -0
- {superset_showtime-0.2.8.dist-info → superset_showtime-0.4.2.dist-info}/entry_points.txt +0 -0
showtime/__init__.py
CHANGED
|
@@ -4,12 +4,13 @@
|
|
|
4
4
|
Circus tent emoji state tracking for Apache Superset ephemeral environments.
|
|
5
5
|
"""
|
|
6
6
|
|
|
7
|
-
__version__ = "0.2
|
|
7
|
+
__version__ = "0.4.2"
|
|
8
8
|
__author__ = "Maxime Beauchemin"
|
|
9
9
|
__email__ = "maximebeauchemin@gmail.com"
|
|
10
10
|
|
|
11
|
-
from .core.circus import PullRequest, Show
|
|
12
11
|
from .core.github import GitHubInterface
|
|
12
|
+
from .core.pull_request import PullRequest
|
|
13
|
+
from .core.show import Show
|
|
13
14
|
|
|
14
15
|
__all__ = [
|
|
15
16
|
"__version__",
|