fastled 1.3.1__py3-none-any.whl → 1.3.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.
- fastled/__init__.py +2 -5
- fastled/__version__.py +4 -0
- fastled/client_server.py +513 -513
- fastled/compile_server_impl.py +332 -332
- fastled/docker_manager.py +987 -987
- fastled/open_browser.py +137 -137
- fastled/print_filter.py +190 -190
- fastled/project_init.py +129 -129
- fastled/server_flask.py +12 -10
- fastled/site/build.py +449 -449
- fastled/string_diff.py +82 -82
- {fastled-1.3.1.dist-info → fastled-1.3.2.dist-info}/METADATA +471 -471
- {fastled-1.3.1.dist-info → fastled-1.3.2.dist-info}/RECORD +17 -16
- {fastled-1.3.1.dist-info → fastled-1.3.2.dist-info}/WHEEL +0 -0
- {fastled-1.3.1.dist-info → fastled-1.3.2.dist-info}/entry_points.txt +0 -0
- {fastled-1.3.1.dist-info → fastled-1.3.2.dist-info}/licenses/LICENSE +0 -0
- {fastled-1.3.1.dist-info → fastled-1.3.2.dist-info}/top_level.txt +0 -0
fastled/__init__.py
CHANGED
@@ -5,17 +5,13 @@ from multiprocessing import Process
|
|
5
5
|
from pathlib import Path
|
6
6
|
from typing import Generator
|
7
7
|
|
8
|
+
from .__version__ import __version__
|
8
9
|
from .compile_server import CompileServer
|
9
10
|
from .live_client import LiveClient
|
10
11
|
from .settings import DOCKER_FILE, IMAGE_NAME
|
11
12
|
from .site.build import build
|
12
13
|
from .types import BuildMode, CompileResult, CompileServerError, FileResponse
|
13
14
|
|
14
|
-
# IMPORTANT! There's a bug in github which will REJECT any version update
|
15
|
-
# that has any other change in the repo. Please bump the version as the
|
16
|
-
# ONLY change in a commit, or else the pypi update and the release will fail.
|
17
|
-
__version__ = "1.3.1"
|
18
|
-
|
19
15
|
|
20
16
|
class Api:
|
21
17
|
@staticmethod
|
@@ -224,4 +220,5 @@ __all__ = [
|
|
224
220
|
"BuildMode",
|
225
221
|
"FileResponse",
|
226
222
|
"DOCKER_FILE",
|
223
|
+
"__version__",
|
227
224
|
]
|
fastled/__version__.py
ADDED