Skip to content

Commit

Permalink
Fix pyrealsense macos dependency
Browse files Browse the repository at this point in the history
  • Loading branch information
haixuanTao committed Dec 11, 2024
1 parent 371a49c commit 98581cf
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions node-hub/dora-pyrealsense/pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "dora-pyrealsense"
version = "0.3.8-rc0"
version = "0.3.8"
authors = ["Haixuan Xavier Tao <[email protected]>"]
description = "Dora Node for capturing video with Pyrealsense"
readme = "README.md"
Expand All @@ -11,8 +11,13 @@ packages = [{ include = "dora_pyrealsense" }]
dora-rs = "^0.3.6"
numpy = "< 2.0.0"
opencv-python = ">= 4.1.1"
pyrealsense2 = "2.54.1.5216"
python = "^3.7"
pyrealsense2 = [
{ version = "2.54.1.5216", platform = "linux" },
{ version = "2.54.1.5216", platform = "windows" },
]
pyrealsense2-macosx = { version = "2.54.2", platform = "darwin" }


[tool.poetry.scripts]
dora-pyrealsense = "dora_pyrealsense.main:main"
Expand Down

0 comments on commit 98581cf

Please sign in to comment.