Skip to content

Commit

Permalink
fix scenario install on cicd user
Browse files Browse the repository at this point in the history
  • Loading branch information
andreaostuni committed Jan 5, 2024
1 parent 3e11996 commit 335867b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/cicd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -253,7 +253,7 @@ jobs:
- name: '[👤|user] Create wheel (default gazebo)'
if: matrix.type == 'User' && matrix.gazebo == 'garden'
shell: bash -i -e {0}
run: pip wheel --use-feature=in-tree-build -v -w dist/ ./scenario
run: pip wheel -v -w dist/ ./scenario
# Note: Calling "pip wheel" with "--global-option" forces all dependencies to be built from their sdist.
# Since it's very slow, we create the wheel from setup.py without isolation (requires system deps).
- name: '[👤|user] Create wheel (custom gazebo)'
Expand Down
2 changes: 1 addition & 1 deletion python/gym_gz/utils/scenario.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@

from typing import List, Tuple, Union

import gymnasium as gym
import gym_gz_models
import gymnasium as gym
import numpy as np

from scenario import core
Expand Down

0 comments on commit 335867b

Please sign in to comment.