Skip to content

Commit

Permalink
Meh, tweak
Browse files Browse the repository at this point in the history
  • Loading branch information
mayhem committed Dec 29, 2024
1 parent 185b83d commit 1651f1e
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ if(${CMAKE_VERSION} VERSION_LESS 3.12)
cmake_policy(VERSION ${CMAKE_MAJOR_VERSION}.${CMAKE_MINOR_VERSION})
endif()

project(rpi_smi_leds VERSION 2024.12.29.1
project(rpi_smi_leds VERSION 2024.12.29.2
DESCRIPTION "Drive 8 or 16 LED strips on an RPI using SMI memory interface"
LANGUAGES C)

Expand Down
5 changes: 3 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,8 @@ def get_compile_flags():
nchans = 8

print("Building smi_leds extension for %d channels" % nchans)
compile_flags.append("-O2 -DLED_NCHANS=%d" % nchans)
compile_flags.append("-DLED_NCHANS=%d" % nchans)
compile_flags.append("-O2")

return compile_flags

Expand All @@ -44,7 +45,7 @@ def get_compile_flags():
long_description=f.read()

setup(name = "smileds",
version = "2024.12.29.1",
version = "2024.12.29.2",
ext_modules = [Extension("smileds",
["python/module.c",
"python/libsmi_leds.c",
Expand Down

0 comments on commit 1651f1e

Please sign in to comment.