From 3d6c8f0fae0b333c65dae19659038713fe1b5dd8 Mon Sep 17 00:00:00 2001 From: Erwin Coumans Date: Sat, 26 May 2018 08:49:23 +1000 Subject: [PATCH] PyBullet: include the pre-trained policy files in data --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index cb1fa79c2..d7e69ab68 100644 --- a/setup.py +++ b/setup.py @@ -438,7 +438,7 @@ hh = setup_py_dir + "/" + datadir for root, dirs, files in os.walk(hh): for fn in files: ext = os.path.splitext(fn)[1][1:] - if ext and ext in 'png gif jpg urdf sdf obj mtl dae off stl STL xml '.split(): + if ext and ext in 'yaml index meta data-00000-of-00001 png gif jpg urdf sdf obj mtl dae off stl STL xml '.split(): fn = root + "/" + fn need_files.append(fn[1+len(hh):])