rod 0.3.5.dev22__tar.gz → 0.4.1.dev5__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.
- {rod-0.3.5.dev22 → rod-0.4.1.dev5}/.github/workflows/ci_cd.yml +7 -26
- {rod-0.3.5.dev22 → rod-0.4.1.dev5}/PKG-INFO +1 -1
- rod-0.4.1.dev5/environment.yml +20 -0
- {rod-0.3.5.dev22 → rod-0.4.1.dev5}/src/rod.egg-info/PKG-INFO +1 -1
- {rod-0.3.5.dev22 → rod-0.4.1.dev5}/src/rod.egg-info/SOURCES.txt +1 -0
- {rod-0.3.5.dev22 → rod-0.4.1.dev5}/.gitattributes +0 -0
- {rod-0.3.5.dev22 → rod-0.4.1.dev5}/.github/CODEOWNERS +0 -0
- {rod-0.3.5.dev22 → rod-0.4.1.dev5}/.github/release.yml +0 -0
- {rod-0.3.5.dev22 → rod-0.4.1.dev5}/.gitignore +0 -0
- {rod-0.3.5.dev22 → rod-0.4.1.dev5}/.pre-commit-config.yaml +0 -0
- {rod-0.3.5.dev22 → rod-0.4.1.dev5}/LICENSE +0 -0
- {rod-0.3.5.dev22 → rod-0.4.1.dev5}/README.md +0 -0
- {rod-0.3.5.dev22 → rod-0.4.1.dev5}/pixi.lock +0 -0
- {rod-0.3.5.dev22 → rod-0.4.1.dev5}/pyproject.toml +0 -0
- {rod-0.3.5.dev22 → rod-0.4.1.dev5}/setup.cfg +0 -0
- {rod-0.3.5.dev22 → rod-0.4.1.dev5}/setup.py +0 -0
- {rod-0.3.5.dev22 → rod-0.4.1.dev5}/src/rod/__init__.py +0 -0
- {rod-0.3.5.dev22 → rod-0.4.1.dev5}/src/rod/__main__.py +0 -0
- {rod-0.3.5.dev22 → rod-0.4.1.dev5}/src/rod/builder/__init__.py +0 -0
- {rod-0.3.5.dev22 → rod-0.4.1.dev5}/src/rod/builder/primitive_builder.py +0 -0
- {rod-0.3.5.dev22 → rod-0.4.1.dev5}/src/rod/builder/primitives.py +0 -0
- {rod-0.3.5.dev22 → rod-0.4.1.dev5}/src/rod/kinematics/__init__.py +0 -0
- {rod-0.3.5.dev22 → rod-0.4.1.dev5}/src/rod/kinematics/kinematic_tree.py +0 -0
- {rod-0.3.5.dev22 → rod-0.4.1.dev5}/src/rod/kinematics/tree_transforms.py +0 -0
- {rod-0.3.5.dev22 → rod-0.4.1.dev5}/src/rod/logging.py +0 -0
- {rod-0.3.5.dev22 → rod-0.4.1.dev5}/src/rod/pretty_printer.py +0 -0
- {rod-0.3.5.dev22 → rod-0.4.1.dev5}/src/rod/sdf/__init__.py +0 -0
- {rod-0.3.5.dev22 → rod-0.4.1.dev5}/src/rod/sdf/collision.py +0 -0
- {rod-0.3.5.dev22 → rod-0.4.1.dev5}/src/rod/sdf/common.py +0 -0
- {rod-0.3.5.dev22 → rod-0.4.1.dev5}/src/rod/sdf/element.py +0 -0
- {rod-0.3.5.dev22 → rod-0.4.1.dev5}/src/rod/sdf/geometry.py +0 -0
- {rod-0.3.5.dev22 → rod-0.4.1.dev5}/src/rod/sdf/joint.py +0 -0
- {rod-0.3.5.dev22 → rod-0.4.1.dev5}/src/rod/sdf/link.py +0 -0
- {rod-0.3.5.dev22 → rod-0.4.1.dev5}/src/rod/sdf/material.py +0 -0
- {rod-0.3.5.dev22 → rod-0.4.1.dev5}/src/rod/sdf/model.py +0 -0
- {rod-0.3.5.dev22 → rod-0.4.1.dev5}/src/rod/sdf/physics.py +0 -0
- {rod-0.3.5.dev22 → rod-0.4.1.dev5}/src/rod/sdf/scene.py +0 -0
- {rod-0.3.5.dev22 → rod-0.4.1.dev5}/src/rod/sdf/sdf.py +0 -0
- {rod-0.3.5.dev22 → rod-0.4.1.dev5}/src/rod/sdf/visual.py +0 -0
- {rod-0.3.5.dev22 → rod-0.4.1.dev5}/src/rod/sdf/world.py +0 -0
- {rod-0.3.5.dev22 → rod-0.4.1.dev5}/src/rod/tree/__init__.py +0 -0
- {rod-0.3.5.dev22 → rod-0.4.1.dev5}/src/rod/tree/directed_tree.py +0 -0
- {rod-0.3.5.dev22 → rod-0.4.1.dev5}/src/rod/tree/tree_elements.py +0 -0
- {rod-0.3.5.dev22 → rod-0.4.1.dev5}/src/rod/urdf/__init__.py +0 -0
- {rod-0.3.5.dev22 → rod-0.4.1.dev5}/src/rod/urdf/exporter.py +0 -0
- {rod-0.3.5.dev22 → rod-0.4.1.dev5}/src/rod/utils/__init__.py +0 -0
- {rod-0.3.5.dev22 → rod-0.4.1.dev5}/src/rod/utils/frame_convention.py +0 -0
- {rod-0.3.5.dev22 → rod-0.4.1.dev5}/src/rod/utils/gazebo.py +0 -0
- {rod-0.3.5.dev22 → rod-0.4.1.dev5}/src/rod/utils/resolve_frames.py +0 -0
- {rod-0.3.5.dev22 → rod-0.4.1.dev5}/src/rod/utils/resolve_uris.py +0 -0
- {rod-0.3.5.dev22 → rod-0.4.1.dev5}/src/rod.egg-info/dependency_links.txt +0 -0
- {rod-0.3.5.dev22 → rod-0.4.1.dev5}/src/rod.egg-info/requires.txt +0 -0
- {rod-0.3.5.dev22 → rod-0.4.1.dev5}/src/rod.egg-info/top_level.txt +0 -0
- {rod-0.3.5.dev22 → rod-0.4.1.dev5}/tests/test_meshbuilder.py +0 -0
- {rod-0.3.5.dev22 → rod-0.4.1.dev5}/tests/test_urdf_exporter.py +0 -0
- {rod-0.3.5.dev22 → rod-0.4.1.dev5}/tests/test_urdf_parsing.py +0 -0
- {rod-0.3.5.dev22 → rod-0.4.1.dev5}/tests/utils_models.py +0 -0
|
@@ -92,13 +92,18 @@ jobs:
|
|
|
92
92
|
with:
|
|
93
93
|
python-version: ${{ matrix.python }}
|
|
94
94
|
|
|
95
|
+
- uses: actions/checkout@v4
|
|
96
|
+
|
|
95
97
|
- uses: conda-incubator/setup-miniconda@v3
|
|
96
98
|
if: matrix.type == 'conda'
|
|
97
99
|
with:
|
|
98
100
|
python-version: ${{ matrix.python }}
|
|
99
101
|
miniforge-version: latest
|
|
100
|
-
|
|
101
|
-
|
|
102
|
+
channel-priority: strict
|
|
103
|
+
environment-file: ./environment.yml
|
|
104
|
+
activate-environment: rod
|
|
105
|
+
conda-remove-defaults: "true"
|
|
106
|
+
|
|
102
107
|
|
|
103
108
|
- name: Install system dependencies
|
|
104
109
|
if: matrix.type == 'apt'
|
|
@@ -110,28 +115,6 @@ jobs:
|
|
|
110
115
|
sudo apt-get update
|
|
111
116
|
sudo apt-get install --no-install-recommends libsdformat13 gz-tools2
|
|
112
117
|
|
|
113
|
-
- name: Install conda dependencies
|
|
114
|
-
if: matrix.type == 'conda'
|
|
115
|
-
# Note: pytest-icdiff creates problems on macOS.
|
|
116
|
-
run: |
|
|
117
|
-
conda install -y \
|
|
118
|
-
coloredlogs \
|
|
119
|
-
mashumaro \
|
|
120
|
-
numpy \
|
|
121
|
-
packaging \
|
|
122
|
-
resolve-robotics-uri-py \
|
|
123
|
-
scipy \
|
|
124
|
-
trimesh \
|
|
125
|
-
xmltodict \
|
|
126
|
-
black \
|
|
127
|
-
isort \
|
|
128
|
-
pptree \
|
|
129
|
-
idyntree \
|
|
130
|
-
pytest \
|
|
131
|
-
robot_descriptions \
|
|
132
|
-
libgz-tools2 \
|
|
133
|
-
libsdformat13
|
|
134
|
-
|
|
135
118
|
- name: Download Python packages
|
|
136
119
|
uses: actions/download-artifact@v4
|
|
137
120
|
with:
|
|
@@ -154,8 +137,6 @@ jobs:
|
|
|
154
137
|
env:
|
|
155
138
|
ROD_LOGGING_LEVEL: DEBUG
|
|
156
139
|
|
|
157
|
-
- uses: actions/checkout@v4
|
|
158
|
-
|
|
159
140
|
- name: Run tests
|
|
160
141
|
run: pytest
|
|
161
142
|
env:
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: rod
|
|
3
|
-
Version: 0.
|
|
3
|
+
Version: 0.4.1.dev5
|
|
4
4
|
Summary: The ultimate Python tool for RObot Descriptions processing.
|
|
5
5
|
Author-email: Diego Ferigo <dgferigo@gmail.com>
|
|
6
6
|
Maintainer-email: Filippo Luca Ferretti <filippo.ferretti@iit.it>, Carlotta Sartore <carlotta.sartore@iit.it>
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
name: rod
|
|
2
|
+
channels:
|
|
3
|
+
- conda-forge
|
|
4
|
+
dependencies:
|
|
5
|
+
- coloredlogs
|
|
6
|
+
- mashumaro
|
|
7
|
+
- numpy
|
|
8
|
+
- packaging
|
|
9
|
+
- resolve-robotics-uri-py
|
|
10
|
+
- scipy
|
|
11
|
+
- trimesh
|
|
12
|
+
- xmltodict
|
|
13
|
+
- black
|
|
14
|
+
- isort
|
|
15
|
+
- pptree
|
|
16
|
+
- idyntree
|
|
17
|
+
- pytest
|
|
18
|
+
- robot_descriptions
|
|
19
|
+
- libgz-tools2
|
|
20
|
+
- libsdformat13
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: rod
|
|
3
|
-
Version: 0.
|
|
3
|
+
Version: 0.4.1.dev5
|
|
4
4
|
Summary: The ultimate Python tool for RObot Descriptions processing.
|
|
5
5
|
Author-email: Diego Ferigo <dgferigo@gmail.com>
|
|
6
6
|
Maintainer-email: Filippo Luca Ferretti <filippo.ferretti@iit.it>, Carlotta Sartore <carlotta.sartore@iit.it>
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|