Skip to content

Commit

Permalink
import recipeloader from main package (#117)
Browse files Browse the repository at this point in the history
* import recipeloader from main package

* try installing pyembree with conda-forge

* fix typo

* change version

* revert conda forge install

* bump cellpack

* bump cellpack version

* try removing 3.7
  • Loading branch information
meganrm authored Sep 6, 2022
1 parent c4f6a76 commit d367c84
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build-main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
runs-on: ${{ matrix.os }}
strategy:
matrix:
python-version: [3.7, 3.8, 3.9]
python-version: [3.8, 3.9]
os: [ubuntu-latest]

steps:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test-and-lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ jobs:
runs-on: ${{ matrix.os }}
strategy:
matrix:
python-version: [3.7, 3.8, 3.9]
python-version: [3.8, 3.9]
os: [ubuntu-latest]

steps:
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
]

cellpack_requirements = [
"cellpack>=0.2.3",
"cellpack>=1.0.3",
]

setup_requirements = [
Expand Down
2 changes: 1 addition & 1 deletion simulariumio/cellpack/cellpack_converter.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,13 +7,13 @@
import json
from scipy.spatial.transform import Rotation as R

from cellpack import RecipeLoader
from ..constants import DISPLAY_TYPE, VIZ_TYPE
from ..data_objects.camera_data import CameraData
from ..trajectory_converter import TrajectoryConverter
from ..data_objects import TrajectoryData, AgentData, DimensionData
from ..data_objects import MetaData, DisplayData
from .cellpack_data import HAND_TYPE, CellpackData
from cellpack.autopack.iotools_simple import RecipeLoader

###############################################################################

Expand Down

0 comments on commit d367c84

Please sign in to comment.