Skip to content

Commit

Permalink
version bump
Browse files Browse the repository at this point in the history
  • Loading branch information
ethanlchristensen committed Nov 2, 2024
1 parent ddb57d9 commit 936368f
Show file tree
Hide file tree
Showing 8 changed files with 524 additions and 15 deletions.
12 changes: 9 additions & 3 deletions bruhanimate/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -75,22 +75,26 @@
offset_demo,
static_demo,
chatbot_demo,
firework_demo,
)


__version__ = "0.2.72"
__version__ = "0.2.73"
__valid_demos__ = [
"static_demo",
"offset_demo",
"matrix_demo",
"gol_demo",
"rain_demo",
"chatbot_demo" "line_demo",
"chatbot_demo",
"line_demo",
"plasma_demo",
"snow_demo",
"stars_demo",
"twinkle_demo",
"noise_demo" "holiday",
"noise_demo",
"holiday",
"firework_demo"
]

if sys.platform == "win32":
Expand Down Expand Up @@ -162,6 +166,7 @@
"text_to_image",
"TwinkleEffect",
"TWINKLE_SPEC",
"firework_demo",
]
else:
__all__ = [
Expand Down Expand Up @@ -229,5 +234,6 @@
"text_to_image",
"TwinkleEffect",
"TWINKLE_SPEC",
"firework_demo",
]

4 changes: 4 additions & 0 deletions bruhanimate/bruheffect/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@
from .offset_effect import OffsetEffect
from .rain_effect import RainEffect
from .noise_effect import NoiseEffect
from .firework_effect import FireworkEffect, Firework, Particle


if sys.platform == "win32":
Expand All @@ -37,6 +38,9 @@
"Key",
"Line",
"TWINKLE_SPEC",
"FireworkEffect",
"Firework",
"Particle"
]
else:
__all__ = [
Expand Down
Loading

0 comments on commit 936368f

Please sign in to comment.