superset-showtime 0.3.2__py3-none-any.whl → 0.4.0__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 CHANGED
@@ -4,12 +4,13 @@
4
4
  Circus tent emoji state tracking for Apache Superset ephemeral environments.
5
5
  """
6
6
 
7
- __version__ = "0.3.2"
7
+ __version__ = "0.4.0"
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__",