-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpixi.toml
More file actions
128 lines (120 loc) · 4.13 KB
/
Copy pathpixi.toml
File metadata and controls
128 lines (120 loc) · 4.13 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
[workspace]
# Update the workspace name accordingly
name = "clr_ws"
authors = ["Erik Holum <erik.holum@nasa.gov>"]
channels = [
"https://prefix.dev/conda-forge",
"https://prefix.dev/robostack-jazzy",
]
# If building robostack packages locally be sure to only target the build you care about.
# For CI we are only looking at linux-64
platforms = ["linux-aarch64", "linux-64"]
version = "0.1.0"
preview = ["pixi-build"]
[activation]
# Sources the workspace install, if present
scripts = ["scripts/entrypoint_pixi.sh"]
[system-requirements]
# Needed for realsense
libc = { family = "glibc", version = "2.35" }
[activation.env]
LIBRARY_PATH = "${CONDA_PREFIX}/lib:${LIBRARY_PATH}"
LD_LIBRARY_PATH = "${CONDA_PREFIX}/lib:${LD_LIBRARY_PATH}"
LDFLAGS = "-L${CONDA_PREFIX}/lib -Wl,-rpath,${CONDA_PREFIX}/lib -fuse-ld=mold"
COLCON_DEFAULT_OUTPUT_STYLE = "catkin_tools"
COLCON_DEFAULTS_FILE = "${PIXI_PROJECT_ROOT}/config/colcon-defaults.yaml"
RCUTILS_COLORIZED_OUTPUT = "1"
# Temporarily needed to build RoboPlan's OInK solver
# See https://github.com/tier4/osqp_vendor/issues/26
CMAKE_POLICY_VERSION_MINIMUM = "3.5"
[tasks]
# Setup tasks
setup-colcon = { cmd = """
colcon mixin add default https://raw.githubusercontent.com/colcon/colcon-mixin-repository/master/index.yaml && \
colcon mixin update default
""" }
# Build tasks
build = "colcon build"
test = "colcon test"
test-result = "colcon test-result --verbose"
clean = "rm -rf build/* install/* log/*"
[dependencies]
# Regular conda dependencies
python = ">=3.11,<3.13"
cmake = ">=4.3.3,<5"
cxx-compiler = ">=1.11.0,<2"
make = ">=4.4.1,<5"
ccache = ">=4.13.1,<5"
ninja = ">=1.13.1,<2"
mold = ">=2.40.4,<3"
colcon-common-extensions = ">=0.3.0,<0.4"
colcon-mixin = ">=0.2.3,<0.3"
pip = "*"
nanobind = ">=2.8.0,<3"
trimesh = ">=4.11.4,<5"
pycollada = ">=0.9.3,<0.10"
viser = ">=1.0.29,<2"
matplotlib = ">=3.10.9,<4"
opencv = ">=4.12.0,<5"
osqp-eigen = ">=0.11.0,<0.12"
pydot = ">=4.0.1,<5"
pyqtwebengine = ">=5.15.11,<6"
pyside6 = ">=6.10.2,<7"
pytest = "<9.1.0" # Gets around error with ament running pytest on newer versions
pytest-mock = ">=3.15.1,<4"
scipy = ">=1.18.0,<2"
libopencv = { version = ">=4.12.0,<5", build = "qt6*" } # Ensure we aren't installing opencv headless
py-opencv = { version = ">=4.12.0,<5", build = "qt6*" }
setuptools = "<80" # Newer versions break colcon symlink installs
librealsense = ">=2.57.7,<3"
# ROS dependencies
ros-jazzy-ros-base = "*"
ros-jazzy-admittance-controller = "*"
ros-jazzy-angles = "*"
ros-jazzy-cv-bridge = "*"
ros-jazzy-depth-image-proc = "*"
ros-jazzy-force-torque-sensor-broadcaster = "*"
ros-jazzy-forward-command-controller = "*"
ros-jazzy-gripper-controllers = "*" # TODO: This is deprecated, use parallel-gripper-controller
ros-jazzy-image-geometry = "*"
ros-jazzy-image-transport = "*"
ros-jazzy-joint-state-broadcaster = "*"
ros-jazzy-joint-trajectory-controller = "*"
ros-jazzy-kinematics-interface-kdl = "*"
ros-jazzy-moveit-configs-utils = "*"
ros-jazzy-moveit-core = "*"
ros-jazzy-moveit-msgs = "*"
ros-jazzy-moveit-planners-chomp = "*"
ros-jazzy-moveit-planners-ompl = "*"
ros-jazzy-moveit-planners-stomp = "*"
ros-jazzy-moveit-ros-control-interface = "*"
ros-jazzy-moveit-ros-planning-interface = "*"
ros-jazzy-moveit-ros-visualization = "*"
ros-jazzy-moveit-visual-tools = "*"
ros-jazzy-mujoco-vendor = "*"
ros-jazzy-nav2-msgs = "*"
ros-jazzy-pilz-industrial-motion-planner = "*"
ros-jazzy-pinocchio = "*"
ros-jazzy-plotjuggler = "*"
ros-jazzy-plotjuggler-ros = "*"
ros-jazzy-position-controllers = "*"
ros-jazzy-python-qt-binding = "*"
ros-jazzy-realsense2-description = "*"
ros-jazzy-realsense2-camera = "*"
ros-jazzy-ros2-control = "*"
ros-jazzy-ros2-control-cmake = "*"
ros-jazzy-trac-ik-kinematics-plugin = "*"
ros-jazzy-ur-controllers = "*"
ros-jazzy-ur-dashboard-msgs = "*"
ros-jazzy-ur-description = "*"
ros-jazzy-ur-msgs = "*"
ros-jazzy-ur-robot-driver = "*"
ros-jazzy-velocity-controllers = "*"
ros-jazzy-xacro = "*"
# Dependencies that not available on conda-forge and must be fetched from PyPi.
# Try not to use this section unless absolutely necessary.
[pypi-dependencies]
filelock = ">=3.29.1, <4"
mujoco = "==3.8.0"
obj2mjcf = ">=0.0.25, <0.0.26"
pupil-apriltags = ">=1.0.4.post11, <2"