fastled 1.1.32__py2.py3-none-any.whl → 1.1.34__py2.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
@@ -1,3 +1,3 @@
1
1
  """FastLED Wasm Compiler package."""
2
2
 
3
- __version__ = "1.1.32"
3
+ __version__ = "1.1.34"
fastled/compile_server.py CHANGED
@@ -110,13 +110,13 @@ class CompileServer:
110
110
  print("Docker could not be started. Exiting.")
111
111
  raise RuntimeError("Docker could not be started. Exiting.")
112
112
  now = datetime.now(timezone.utc)
113
- now_str = now.strftime("%Y-%m-%d %H %Z")
113
+ now_str = now.strftime("%Y-%m-%d")
114
114
 
115
115
  upgrade = False
116
116
  if self.auto_updates is None:
117
117
  prev_date_str = DISK_CACHE.get("last-update")
118
118
  if prev_date_str != now_str:
119
- print("One hour has passed, checking docker for updates")
119
+ print("One day has passed, checking docker for updates")
120
120
  upgrade = True
121
121
  else:
122
122
  upgrade = self.auto_updates