robot-keyframe-kit 0.3.1__tar.gz → 0.3.2__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (18) hide show
  1. {robot_keyframe_kit-0.3.1/src/robot_keyframe_kit.egg-info → robot_keyframe_kit-0.3.2}/PKG-INFO +1 -1
  2. {robot_keyframe_kit-0.3.1 → robot_keyframe_kit-0.3.2}/pyproject.toml +1 -1
  3. {robot_keyframe_kit-0.3.1 → robot_keyframe_kit-0.3.2}/src/robot_keyframe_kit/math_utils.py +1 -1
  4. {robot_keyframe_kit-0.3.1 → robot_keyframe_kit-0.3.2/src/robot_keyframe_kit.egg-info}/PKG-INFO +1 -1
  5. {robot_keyframe_kit-0.3.1 → robot_keyframe_kit-0.3.2}/LICENSE +0 -0
  6. {robot_keyframe_kit-0.3.1 → robot_keyframe_kit-0.3.2}/MANIFEST.in +0 -0
  7. {robot_keyframe_kit-0.3.1 → robot_keyframe_kit-0.3.2}/README.md +0 -0
  8. {robot_keyframe_kit-0.3.1 → robot_keyframe_kit-0.3.2}/setup.cfg +0 -0
  9. {robot_keyframe_kit-0.3.1 → robot_keyframe_kit-0.3.2}/src/robot_keyframe_kit/__init__.py +0 -0
  10. {robot_keyframe_kit-0.3.1 → robot_keyframe_kit-0.3.2}/src/robot_keyframe_kit/config.py +0 -0
  11. {robot_keyframe_kit-0.3.1 → robot_keyframe_kit-0.3.2}/src/robot_keyframe_kit/editor.py +0 -0
  12. {robot_keyframe_kit-0.3.1 → robot_keyframe_kit-0.3.2}/src/robot_keyframe_kit/keyframe.py +0 -0
  13. {robot_keyframe_kit-0.3.1 → robot_keyframe_kit-0.3.2}/src/robot_keyframe_kit/sim_worker.py +0 -0
  14. {robot_keyframe_kit-0.3.1 → robot_keyframe_kit-0.3.2}/src/robot_keyframe_kit.egg-info/SOURCES.txt +0 -0
  15. {robot_keyframe_kit-0.3.1 → robot_keyframe_kit-0.3.2}/src/robot_keyframe_kit.egg-info/dependency_links.txt +0 -0
  16. {robot_keyframe_kit-0.3.1 → robot_keyframe_kit-0.3.2}/src/robot_keyframe_kit.egg-info/entry_points.txt +0 -0
  17. {robot_keyframe_kit-0.3.1 → robot_keyframe_kit-0.3.2}/src/robot_keyframe_kit.egg-info/requires.txt +0 -0
  18. {robot_keyframe_kit-0.3.1 → robot_keyframe_kit-0.3.2}/src/robot_keyframe_kit.egg-info/top_level.txt +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: robot-keyframe-kit
3
- Version: 0.3.1
3
+ Version: 0.3.2
4
4
  Summary: A generalizable Viser-based keyframe editor for any MuJoCo robot
5
5
  Author-email: Stanford TML <yuming29@stanford.edu>
6
6
  Maintainer-email: Stanford TML <yuming29@stanford.edu>
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
4
4
 
5
5
  [project]
6
6
  name = "robot-keyframe-kit"
7
- version = "0.3.1"
7
+ version = "0.3.2"
8
8
  description = "A generalizable Viser-based keyframe editor for any MuJoCo robot"
9
9
  readme = "README.md"
10
10
  license = "MIT"
@@ -148,7 +148,7 @@ def solve_equality_constraints(
148
148
  if np.max(np.abs(pos_err)) < tol:
149
149
  break
150
150
 
151
- J = data.efc_J.reshape(nefc, model.nv)[eq_mask].copy()
151
+ J = data.efc_J.reshape(-1, model.nv)[:nefc][eq_mask].copy()
152
152
 
153
153
  # Zero out locked columns so the solver cannot move those DOFs.
154
154
  if locked_dofs:
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: robot-keyframe-kit
3
- Version: 0.3.1
3
+ Version: 0.3.2
4
4
  Summary: A generalizable Viser-based keyframe editor for any MuJoCo robot
5
5
  Author-email: Stanford TML <yuming29@stanford.edu>
6
6
  Maintainer-email: Stanford TML <yuming29@stanford.edu>