Skip to content

Commit

Permalink
fix #53
Browse files Browse the repository at this point in the history
  • Loading branch information
jackw01 committed Oct 26, 2023
1 parent 79e8b9a commit 9feca2b
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion ledcontrol/static/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ <h2 class="header-stylized-text">LEDControl</h2>
</main>
<footer>
<small>
<a href="https://jackw01.github.io/led-control/">LEDControl v2.0.0</a> by <a
<a href="https://jackw01.github.io/led-control/">LEDControl v2.2.0</a> by <a
href="https://github.com/jackw01">jackw01</a>. Released under the MIT License.
</small>
</footer>
Expand Down
6 changes: 3 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#!/usr/bin/env python
# -*- coding: utf-8 -*-

import sys
import sys, io
from setuptools import find_packages, setup, Extension
from setuptools.command.develop import develop
from setuptools.command.install import install
Expand Down Expand Up @@ -38,8 +38,8 @@ def is_raspberrypi():
'HAP-python==4.4.0',
'pyopenssl==22.1.0',
'numpy>=1.21.0',
'pyfastnoisesimd>=0.4.2',
] + (['bjoern>=3.2.1'] if sys.platform.startswith('linux') else [])
'pyserial>=3.5',
] + (['bjoern>=3.2.1'] if sys.platform.startswith('linux') else []) + (['pyfastnoisesimd>=0.4.2'] if not is_raspberrypi() else [])

extensions = [
Extension('_ledcontrol_rpi_ws281x_driver',
Expand Down

0 comments on commit 9feca2b

Please sign in to comment.