Skip to content

Commit

Permalink
fixed workarounds and duit support
Browse files Browse the repository at this point in the history
  • Loading branch information
cansik committed Nov 1, 2024
1 parent 8020da0 commit 4d5034e
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 8 deletions.
4 changes: 2 additions & 2 deletions requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -9,5 +9,5 @@ numpy<2

# gui related
visiongraph-ui~=0.3.0
duit[open3d]~=0.1.13
duit-osc~=0.2.0
duit[open3d]~=0.1.14.0
duit-osc~=0.3.0
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ def finalize_options(self) -> None:

setup(
name=NAME,
version="0.3.0",
version="0.3.1",
packages=required_packages,
entry_points={
"console_scripts": [
Expand Down
6 changes: 1 addition & 5 deletions spacestream/__main__.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
# fix conda load dll problem
import faulthandler
import os
import threading
from pathlib import Path

from duit.arguments.Arguments import DefaultArguments
Expand Down Expand Up @@ -129,10 +128,7 @@ def main():
print(f"{osc_service.api_description()}\n")

# run the service
def osc_thread():
osc_service.run()

threading.Thread(target=osc_thread, daemon=True).start()
osc_service.run_async()

print("OSC Server started!")
print(f" Please, listen for changes on port {osc_service.out_port}")
Expand Down

0 comments on commit 4d5034e

Please sign in to comment.