File tree Expand file tree Collapse file tree 3 files changed +8
-5
lines changed Expand file tree Collapse file tree 3 files changed +8
-5
lines changed Original file line number Diff line number Diff line change 19
19
from neopixel_write import neopixel_write
20
20
21
21
try :
22
- import _pixelbuf
22
+ import adafruit_pixelbuf
23
23
except ImportError :
24
- import adafruit_pypixelbuf as _pixelbuf
24
+ try :
25
+ import _pixelbuf as adafruit_pixelbuf
26
+ except ImportError :
27
+ import adafruit_pypixelbuf as adafruit_pixelbuf
25
28
26
29
27
30
__version__ = "0.0.0-auto.0"
39
42
"""Green Red Blue White"""
40
43
41
44
42
- class NeoPixel (_pixelbuf .PixelBuf ):
45
+ class NeoPixel (adafruit_pixelbuf .PixelBuf ):
43
46
"""
44
47
A sequence of neopixels.
45
48
Original file line number Diff line number Diff line change 3
3
# SPDX-License-Identifier: Unlicense
4
4
5
5
Adafruit-Blinka
6
- adafruit-circuitpython-pypixelbuf >= 2.0.0
6
+ adafruit-circuitpython-pixelbuf
Original file line number Diff line number Diff line change 34
34
# Author details
35
35
author = "Adafruit Industries & Damien P. George" ,
36
36
author_email = "circuitpython@adafruit.com" ,
37
- install_requires = ["Adafruit-Blinka" , "adafruit-circuitpython-pypixelbuf>=2.0.0 " ],
37
+ install_requires = ["Adafruit-Blinka" , "adafruit-circuitpython-pixelbuf " ],
38
38
# Choose your license
39
39
license = "MIT" ,
40
40
# See https://pypi.python.org/pypi?%3Aaction=list_classifiers
You can’t perform that action at this time.
0 commit comments