biomechzoo 0.2.2__tar.gz → 0.3.0__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.

Potentially problematic release.


This version of biomechzoo might be problematic. Click here for more details.

Files changed (53) hide show
  1. {biomechzoo-0.2.2 → biomechzoo-0.3.0}/PKG-INFO +6 -2
  2. {biomechzoo-0.2.2 → biomechzoo-0.3.0}/README.md +4 -0
  3. {biomechzoo-0.2.2 → biomechzoo-0.3.0}/pyproject.toml +2 -2
  4. {biomechzoo-0.2.2 → biomechzoo-0.3.0}/src/biomechzoo.egg-info/PKG-INFO +6 -2
  5. {biomechzoo-0.2.2 → biomechzoo-0.3.0}/src/biomechzoo.egg-info/requires.txt +1 -1
  6. {biomechzoo-0.2.2 → biomechzoo-0.3.0}/LICENSE +0 -0
  7. {biomechzoo-0.2.2 → biomechzoo-0.3.0}/setup.cfg +0 -0
  8. {biomechzoo-0.2.2 → biomechzoo-0.3.0}/src/biomechzoo/__init__.py +0 -0
  9. {biomechzoo-0.2.2 → biomechzoo-0.3.0}/src/biomechzoo/__main__.py +0 -0
  10. {biomechzoo-0.2.2 → biomechzoo-0.3.0}/src/biomechzoo/biomech_ops/__init__.py +0 -0
  11. {biomechzoo-0.2.2 → biomechzoo-0.3.0}/src/biomechzoo/biomech_ops/continuous_relative_phase_data.py +0 -0
  12. {biomechzoo-0.2.2 → biomechzoo-0.3.0}/src/biomechzoo/biomech_ops/continuous_relative_phase_line.py +0 -0
  13. {biomechzoo-0.2.2 → biomechzoo-0.3.0}/src/biomechzoo/biomech_ops/filter_data.py +0 -0
  14. {biomechzoo-0.2.2 → biomechzoo-0.3.0}/src/biomechzoo/biomech_ops/filter_line.py +0 -0
  15. {biomechzoo-0.2.2 → biomechzoo-0.3.0}/src/biomechzoo/biomech_ops/normalize_data.py +0 -0
  16. {biomechzoo-0.2.2 → biomechzoo-0.3.0}/src/biomechzoo/biomech_ops/normalize_line.py +0 -0
  17. {biomechzoo-0.2.2 → biomechzoo-0.3.0}/src/biomechzoo/biomech_ops/phase_angle_data.py +0 -0
  18. {biomechzoo-0.2.2 → biomechzoo-0.3.0}/src/biomechzoo/biomech_ops/phase_angle_line.py +0 -0
  19. {biomechzoo-0.2.2 → biomechzoo-0.3.0}/src/biomechzoo/biomechzoo.py +0 -0
  20. {biomechzoo-0.2.2 → biomechzoo-0.3.0}/src/biomechzoo/conversion/__init__.py +0 -0
  21. {biomechzoo-0.2.2 → biomechzoo-0.3.0}/src/biomechzoo/conversion/c3d2zoo_data.py +0 -0
  22. {biomechzoo-0.2.2 → biomechzoo-0.3.0}/src/biomechzoo/conversion/csv2zoo_data.py +0 -0
  23. {biomechzoo-0.2.2 → biomechzoo-0.3.0}/src/biomechzoo/conversion/mvnx2zoo_data.py +0 -0
  24. {biomechzoo-0.2.2 → biomechzoo-0.3.0}/src/biomechzoo/conversion/opencap2zoo_data.py +0 -0
  25. {biomechzoo-0.2.2 → biomechzoo-0.3.0}/src/biomechzoo/mvn/__init__.py +0 -0
  26. {biomechzoo-0.2.2 → biomechzoo-0.3.0}/src/biomechzoo/mvn/load_mvnx.py +0 -0
  27. {biomechzoo-0.2.2 → biomechzoo-0.3.0}/src/biomechzoo/mvn/main_mvnx.py +0 -0
  28. {biomechzoo-0.2.2 → biomechzoo-0.3.0}/src/biomechzoo/mvn/mvn.py +0 -0
  29. {biomechzoo-0.2.2 → biomechzoo-0.3.0}/src/biomechzoo/mvn/mvnx_file_accessor.py +0 -0
  30. {biomechzoo-0.2.2 → biomechzoo-0.3.0}/src/biomechzoo/processing/__init__.py +0 -0
  31. {biomechzoo-0.2.2 → biomechzoo-0.3.0}/src/biomechzoo/processing/add_channel_data.py +0 -0
  32. {biomechzoo-0.2.2 → biomechzoo-0.3.0}/src/biomechzoo/processing/addchannel_data.py +0 -0
  33. {biomechzoo-0.2.2 → biomechzoo-0.3.0}/src/biomechzoo/processing/addevent_data.py +0 -0
  34. {biomechzoo-0.2.2 → biomechzoo-0.3.0}/src/biomechzoo/processing/explodechannel_data.py +0 -0
  35. {biomechzoo-0.2.2 → biomechzoo-0.3.0}/src/biomechzoo/processing/partition_data.py +0 -0
  36. {biomechzoo-0.2.2 → biomechzoo-0.3.0}/src/biomechzoo/processing/removechannel_data.py +0 -0
  37. {biomechzoo-0.2.2 → biomechzoo-0.3.0}/src/biomechzoo/processing/renamechannel_data.py +0 -0
  38. {biomechzoo-0.2.2 → biomechzoo-0.3.0}/src/biomechzoo/processing/renameevent_data.py +0 -0
  39. {biomechzoo-0.2.2 → biomechzoo-0.3.0}/src/biomechzoo/processing/split_trial_by_gait_cycle.py +0 -0
  40. {biomechzoo-0.2.2 → biomechzoo-0.3.0}/src/biomechzoo/utils/__init__.py +0 -0
  41. {biomechzoo-0.2.2 → biomechzoo-0.3.0}/src/biomechzoo/utils/batchdisp.py +0 -0
  42. {biomechzoo-0.2.2 → biomechzoo-0.3.0}/src/biomechzoo/utils/compute_sampling_rate_from_time.py +0 -0
  43. {biomechzoo-0.2.2 → biomechzoo-0.3.0}/src/biomechzoo/utils/engine.py +0 -0
  44. {biomechzoo-0.2.2 → biomechzoo-0.3.0}/src/biomechzoo/utils/findfield.py +0 -0
  45. {biomechzoo-0.2.2 → biomechzoo-0.3.0}/src/biomechzoo/utils/get_split_events.py +0 -0
  46. {biomechzoo-0.2.2 → biomechzoo-0.3.0}/src/biomechzoo/utils/split_trial.py +0 -0
  47. {biomechzoo-0.2.2 → biomechzoo-0.3.0}/src/biomechzoo/utils/zload.py +0 -0
  48. {biomechzoo-0.2.2 → biomechzoo-0.3.0}/src/biomechzoo/utils/zplot.py +0 -0
  49. {biomechzoo-0.2.2 → biomechzoo-0.3.0}/src/biomechzoo/utils/zsave.py +0 -0
  50. {biomechzoo-0.2.2 → biomechzoo-0.3.0}/src/biomechzoo.egg-info/SOURCES.txt +0 -0
  51. {biomechzoo-0.2.2 → biomechzoo-0.3.0}/src/biomechzoo.egg-info/dependency_links.txt +0 -0
  52. {biomechzoo-0.2.2 → biomechzoo-0.3.0}/src/biomechzoo.egg-info/entry_points.txt +0 -0
  53. {biomechzoo-0.2.2 → biomechzoo-0.3.0}/src/biomechzoo.egg-info/top_level.txt +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: biomechzoo
3
- Version: 0.2.2
3
+ Version: 0.3.0
4
4
  Summary: Python implementation of the biomechZoo toolbox
5
5
  License-Expression: MIT
6
6
  Project-URL: Homepage, https://github.com/mcgillmotionlab/biomechzoo
@@ -9,7 +9,7 @@ Description-Content-Type: text/markdown
9
9
  License-File: LICENSE
10
10
  Requires-Dist: ezc3d>=1.5.19
11
11
  Requires-Dist: matplotlib>=3.10.6
12
- Requires-Dist: numpy>=2.3.3
12
+ Requires-Dist: numpy==2.2.6
13
13
  Requires-Dist: pandas>=2.3.2
14
14
  Requires-Dist: scipy>=1.16.2
15
15
  Dynamic: license-file
@@ -25,4 +25,8 @@ This is a development version of the biomechzoo toolbox for python.
25
25
  - If you need to install a specific version, run ``pip install biomechzoo==x.x.x`` where x.x.x is the version number.
26
26
  - If you need to update biomechzoo to the latest version in your env, run ``pip install biomechzoo --upgrade``
27
27
 
28
+ ## Dependencies notes
29
+ - We use Python 3.11 for compatibility with https://github.com/stanfordnmbl/opencap-processing
30
+ - We use Numpy 2.2.6 for compatibility with https://pypi.org/project/numba/
31
+
28
32
  See also http://www.github.com/mcgillmotionlab/biomechzoo or http://www.biomechzoo.com for more information
@@ -9,4 +9,8 @@ This is a development version of the biomechzoo toolbox for python.
9
9
  - If you need to install a specific version, run ``pip install biomechzoo==x.x.x`` where x.x.x is the version number.
10
10
  - If you need to update biomechzoo to the latest version in your env, run ``pip install biomechzoo --upgrade``
11
11
 
12
+ ## Dependencies notes
13
+ - We use Python 3.11 for compatibility with https://github.com/stanfordnmbl/opencap-processing
14
+ - We use Numpy 2.2.6 for compatibility with https://pypi.org/project/numba/
15
+
12
16
  See also http://www.github.com/mcgillmotionlab/biomechzoo or http://www.biomechzoo.com for more information
@@ -1,6 +1,6 @@
1
1
  [project]
2
2
  name = "biomechzoo"
3
- version = "0.2.2"
3
+ version = "0.3.0"
4
4
  description = "Python implementation of the biomechZoo toolbox"
5
5
  readme = "README.md"
6
6
  requires-python = ">=3.11"
@@ -9,7 +9,7 @@ license-files = ["LICEN[CS]E*"]
9
9
  dependencies = [
10
10
  "ezc3d>=1.5.19",
11
11
  "matplotlib>=3.10.6",
12
- "numpy>=2.3.3",
12
+ "numpy==2.2.6",
13
13
  "pandas>=2.3.2",
14
14
  "scipy>=1.16.2",
15
15
  ]
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: biomechzoo
3
- Version: 0.2.2
3
+ Version: 0.3.0
4
4
  Summary: Python implementation of the biomechZoo toolbox
5
5
  License-Expression: MIT
6
6
  Project-URL: Homepage, https://github.com/mcgillmotionlab/biomechzoo
@@ -9,7 +9,7 @@ Description-Content-Type: text/markdown
9
9
  License-File: LICENSE
10
10
  Requires-Dist: ezc3d>=1.5.19
11
11
  Requires-Dist: matplotlib>=3.10.6
12
- Requires-Dist: numpy>=2.3.3
12
+ Requires-Dist: numpy==2.2.6
13
13
  Requires-Dist: pandas>=2.3.2
14
14
  Requires-Dist: scipy>=1.16.2
15
15
  Dynamic: license-file
@@ -25,4 +25,8 @@ This is a development version of the biomechzoo toolbox for python.
25
25
  - If you need to install a specific version, run ``pip install biomechzoo==x.x.x`` where x.x.x is the version number.
26
26
  - If you need to update biomechzoo to the latest version in your env, run ``pip install biomechzoo --upgrade``
27
27
 
28
+ ## Dependencies notes
29
+ - We use Python 3.11 for compatibility with https://github.com/stanfordnmbl/opencap-processing
30
+ - We use Numpy 2.2.6 for compatibility with https://pypi.org/project/numba/
31
+
28
32
  See also http://www.github.com/mcgillmotionlab/biomechzoo or http://www.biomechzoo.com for more information
@@ -1,5 +1,5 @@
1
1
  ezc3d>=1.5.19
2
2
  matplotlib>=3.10.6
3
- numpy>=2.3.3
3
+ numpy==2.2.6
4
4
  pandas>=2.3.2
5
5
  scipy>=1.16.2
File without changes
File without changes