Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Next Next commit
version bump
  • Loading branch information
PawelKorsak committed Mar 23, 2026
commit 7a73bb13830ae48e1c912e7ede09f3b4fa5b2954
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ set(CMAKE_EXPORT_COMPILE_COMMANDS ON)

set(CANDLESDK_VERSION_1 1)
set(CANDLESDK_VERSION_2 3)
set(CANDLESDK_VERSION_3 3)
set(CANDLESDK_VERSION_3 4)
set(CANDLESDK_VERSION
${CANDLESDK_VERSION_1}.${CANDLESDK_VERSION_2}.${CANDLESDK_VERSION_3})
add_compile_definitions(CANDLESDK_VERSION="${CANDLESDK_VERSION}")
Expand Down
2 changes: 1 addition & 1 deletion pycandle/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ project(pyCandle)

set(CMAKE_BUILD_TYPE Release)

find_package(Python COMPONENTS Interpreter REQUIRED)
find_package(Python COMPONENTS Interpreter Development REQUIRED)
add_subdirectory(3rd_party/pybind11)
message(${CMAKE_SOURCE_DIR})
pybind11_add_module(pyCandle MODULE src/bindings.cpp)
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ build-backend = "scikit_build_core.build"

[project]
name = "candlesdk"
version = "1.3.3"
version = "1.3.4"
dependencies = ["cmake"]
requires-python = ">= 3.10"
authors = [{ name = "MAB Robotics", email = "support@mabrobotics.pl" }]
Expand Down