setup.py lists the following dependencies:
|
install_requires=['gym', 'matplotlib', 'pybullet', 'stable-baselines3']) |
requirements.py lists the same but with the addition of h5py:
|
gym |
|
matplotlib |
|
pybullet |
|
stable-baselines3 |
|
h5py |
Is there any reason for these two lists of requirements to be different? Perhaps the commit that added the h5py dependency to requirements.txt (c2925c9) just forgot to also add it to setup.py?
setup.py lists the following dependencies:
pytorch-a2c-ppo-acktr-gail/setup.py
Line 7 in 41332b7
requirements.py lists the same but with the addition of h5py:
pytorch-a2c-ppo-acktr-gail/requirements.txt
Lines 1 to 5 in 41332b7
Is there any reason for these two lists of requirements to be different? Perhaps the commit that added the h5py dependency to requirements.txt (c2925c9) just forgot to also add it to setup.py?