mirror of
https://github.com/Farama-Foundation/Gymnasium.git
synced 2025-08-01 06:07:08 +00:00
fix build - only install mujoco for python 3.6, 3.7, (#2133)
* reverting to older version of 3.6 python to test if the build is failing because of that * revert 3.7 to 3.7.3 for the build * revert python 3.8 version to 3.8.1 * do not install mujoco on 3.8 and 3.9 * enable mujoco for 3.7 * . * . * . * use regex to navigate python version dependent package installation * .
This commit is contained in:
3
setup.py
3
setup.py
@@ -15,7 +15,8 @@ extras = {
|
||||
}
|
||||
|
||||
# Meta dependency groups.
|
||||
extras['all'] = [item for group in extras.values() for item in group]
|
||||
extras['nomujoco'] = list(set([item for name, group in extras.items() if name != 'mujoco' and name != "robotics" for item in group]))
|
||||
extras['all'] = list(set([item for group in extras.values() for item in group]))
|
||||
|
||||
setup(name='gym',
|
||||
version=VERSION,
|
||||
|
Reference in New Issue
Block a user