We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c08a631 commit c0dbfa3Copy full SHA for c0dbfa3
.github/workflows/mac_test.yml
@@ -17,11 +17,15 @@ jobs:
17
with:
18
activate-environment: mousearm-test
19
python-version: "3.11"
20
- architecture: x64
+ architecture: x64
21
+ channels: opensim-org,conda-forge,defaults
22
+ channel-priority: true
23
24
- name: Step 2: Install opensim
25
run: |
- conda install -c opensim-org opensim -y
26
+ conda install opensim -y
27
+ # Verify installation immediately
28
+ python -c "import opensim; print(opensim.__version__)"
29
30
- name: Step 3: Install library with uv
31
@@ -30,5 +34,5 @@ jobs:
34
35
- name: Step 4: Run Demo
32
36
33
- cd mousearm/mousearm/Demo
37
+ cd $(find . -type d -name "Demo" | head -n 1)
38
python Demo.py
0 commit comments