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 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
@@ -0,0 +1,4 @@
1
+ # IMPORTANT! There's a bug in github which will REJECT any version update
2
+ # that has any other change in the repo. Please bump the version as the
3
+ # ONLY change in a commit, or else the pypi update and the release will fail.
4
+ __version__ = "1.3.2"