fastled 1.2.28__py3-none-any.whl → 1.2.29__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.
- fastled/__init__.py +1 -1
- fastled/compile_server_impl.py +5 -0
- fastled/docker_manager.py +1 -1
- {fastled-1.2.28.dist-info → fastled-1.2.29.dist-info}/METADATA +1 -1
- {fastled-1.2.28.dist-info → fastled-1.2.29.dist-info}/RECORD +9 -9
- {fastled-1.2.28.dist-info → fastled-1.2.29.dist-info}/LICENSE +0 -0
- {fastled-1.2.28.dist-info → fastled-1.2.29.dist-info}/WHEEL +0 -0
- {fastled-1.2.28.dist-info → fastled-1.2.29.dist-info}/entry_points.txt +0 -0
- {fastled-1.2.28.dist-info → fastled-1.2.29.dist-info}/top_level.txt +0 -0
fastled/__init__.py
CHANGED
@@ -15,7 +15,7 @@ from .types import BuildMode, CompileResult, CompileServerError
|
|
15
15
|
# IMPORTANT! There's a bug in github which will REJECT any version update
|
16
16
|
# that has any other change in the repo. Please bump the version as the
|
17
17
|
# ONLY change in a commit, or else the pypi update and the release will fail.
|
18
|
-
__version__ = "1.2.
|
18
|
+
__version__ = "1.2.29"
|
19
19
|
|
20
20
|
|
21
21
|
class Api:
|
fastled/compile_server_impl.py
CHANGED
@@ -1,4 +1,5 @@
|
|
1
1
|
import subprocess
|
2
|
+
import sys
|
2
3
|
import time
|
3
4
|
import warnings
|
4
5
|
from datetime import datetime, timezone
|
@@ -69,6 +70,10 @@ class CompileServerImpl:
|
|
69
70
|
if wait_for_startup:
|
70
71
|
ok = self.wait_for_startup()
|
71
72
|
if not ok:
|
73
|
+
if self.interactive:
|
74
|
+
print("Exited from container.")
|
75
|
+
sys.exit(0)
|
76
|
+
return
|
72
77
|
raise CompileServerError("Server did not start")
|
73
78
|
if not self.interactive:
|
74
79
|
msg = f"# FastLED Compile Server started at {self.url()} #"
|
fastled/docker_manager.py
CHANGED
@@ -544,7 +544,7 @@ class DockerManager:
|
|
544
544
|
docker_command.append(command)
|
545
545
|
cmd_str: str = subprocess.list2cmdline(docker_command)
|
546
546
|
print(f"Running command: {cmd_str}")
|
547
|
-
subprocess.run(docker_command, check=
|
547
|
+
subprocess.run(docker_command, check=False)
|
548
548
|
except subprocess.CalledProcessError as e:
|
549
549
|
print(f"Error running Docker command: {e}")
|
550
550
|
diff = time.time() - start_time
|
@@ -1,10 +1,10 @@
|
|
1
|
-
fastled/__init__.py,sha256=
|
1
|
+
fastled/__init__.py,sha256=hA65jI_nkmV27t4NlEu08F5Be6fNxAF-LDFEGh6lwPg,11084
|
2
2
|
fastled/app.py,sha256=uK-Ag2R4-FB6PyKorVOpBsujGn-jO7aYJEY8Kw76vc0,3512
|
3
3
|
fastled/cli.py,sha256=FjVr31ht0UPlAcmX-84NwfAGMQHTkrCe4o744jCAxiw,375
|
4
4
|
fastled/client_server.py,sha256=eORWVyI1PvyowmhLWt3V9aI_AemPSBL9bAkjMBD2kAw,14282
|
5
5
|
fastled/compile_server.py,sha256=g0y9vEZqpzAJEUwketV8lbwI8VZNSSLuOuwcF04k-dw,2775
|
6
|
-
fastled/compile_server_impl.py,sha256=
|
7
|
-
fastled/docker_manager.py,sha256=
|
6
|
+
fastled/compile_server_impl.py,sha256=JY7cDwFR1qZ05UtPkpCzkrylibpSMVlt7zudI6mnoYM,9895
|
7
|
+
fastled/docker_manager.py,sha256=cIxOSeHnDqrT5IWPP1sl1cF8XYy3sUNfoOE-JpuKr3U,29815
|
8
8
|
fastled/filewatcher.py,sha256=LwEQJkqADsArZyY499RLAer6JjJyDwaQBcAvT7xmp3c,6708
|
9
9
|
fastled/keyboard.py,sha256=vyYxE98WCXjvMpcUJd0YXPVvt7TzvBmifLYI-K7jtKg,3524
|
10
10
|
fastled/live_client.py,sha256=b9mVJ-8w_zoEDwKIlAEUC5Q1La5W5rR6ct-exOcgJec,2561
|
@@ -25,9 +25,9 @@ fastled/assets/example.txt,sha256=lTBovRjiz0_TgtAtbA1C5hNi2ffbqnNPqkKg6UiKCT8,54
|
|
25
25
|
fastled/site/build.py,sha256=l4RajIk0bApiAifT1lyLjIZi9lpPtSba4cnwWP5UOKc,14064
|
26
26
|
fastled/test/can_run_local_docker_tests.py,sha256=LEuUbHctRhNNFWcvnz2kEGmjDJeXO4c3kNpizm3yVJs,400
|
27
27
|
fastled/test/examples.py,sha256=6xPwx_k9_XwYTpI1nk4SrYbsJKHJACd30GzD1epGqhY,1597
|
28
|
-
fastled-1.2.
|
29
|
-
fastled-1.2.
|
30
|
-
fastled-1.2.
|
31
|
-
fastled-1.2.
|
32
|
-
fastled-1.2.
|
33
|
-
fastled-1.2.
|
28
|
+
fastled-1.2.29.dist-info/LICENSE,sha256=b6pOoifSXiUaz_lDS84vWlG3fr4yUKwB8fzkrH9R8bQ,1064
|
29
|
+
fastled-1.2.29.dist-info/METADATA,sha256=u0nirVx_ysCVDTWa-_8KGKJGVRpS-w7qVuPl5x4C_as,21176
|
30
|
+
fastled-1.2.29.dist-info/WHEEL,sha256=In9FTNxeP60KnTkGw7wk6mJPYd_dQSjEZmXdBdMCI-8,91
|
31
|
+
fastled-1.2.29.dist-info/entry_points.txt,sha256=RCwmzCSOS4-C2i9EziANq7Z2Zb4KFnEMR1FQC0bBwAw,101
|
32
|
+
fastled-1.2.29.dist-info/top_level.txt,sha256=Bbv5kpJpZhWNCvDF4K0VcvtBSDMa8B7PTOrZa9CezHY,8
|
33
|
+
fastled-1.2.29.dist-info/RECORD,,
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|