Skip to content

Commit

Permalink
remove numpy from deps
Browse files Browse the repository at this point in the history
  • Loading branch information
jonmatthis committed Oct 29, 2023
1 parent f1c8828 commit 12f4ea0
Show file tree
Hide file tree
Showing 4 changed files with 2 additions and 11 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@

import numpy as np

from ajc27_freemocap_blender_addon.core_functions.setup_scene.get_path_to_sample_data import get_path_to_sample_data
from .helpers.freemocap_component_data import FreemocapComponentData
from .helpers.freemocap_data_paths import FreemocapDataPaths
from .helpers.freemocap_data_stats import FreemocapDataStats
Expand Down Expand Up @@ -199,7 +200,6 @@ def __str__(self):


if __name__ == "__main__":
from .core_functions.setup_scene.get_path_to_sample_data import get_path_to_sample_data

recording_path_in = get_path_to_sample_data()
freemocap_data = FreemocapData.from_recording_path(recording_path=recording_path_in,
Expand Down
3 changes: 1 addition & 2 deletions ajc27_freemocap_blender_addon/run_as_main.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,9 +19,8 @@ def ajc27_run_as_main_function(recording_path: str,


if __name__ == "__main__" or __name__ == "<run_path>":
from ajc27_freemocap_blender_addon.core_functions.main_controller import MainController

print("RUNNING AJC27 FREEMOCAP ADDON...")
from ajc27_freemocap_blender_addon.core_functions.main_controller import MainController
try:
argv = sys.argv
print(f"Received command line arguments: {argv}")
Expand Down
7 changes: 0 additions & 7 deletions poetry.lock

This file was deleted.

1 change: 0 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,6 @@ packages = [{ include = "ajc27_freemocap_blender_addon" }]

[tool.pofetry.dependencies]
python = ">=3.8,<3.13"
numpy = "^1.26.1"


[build-system]
Expand Down

0 comments on commit 12f4ea0

Please sign in to comment.