Skip to content

Commit

Permalink
Merge branch 'develop' for v1.11.2
Browse files Browse the repository at this point in the history
  • Loading branch information
pvl-bot committed Nov 20, 2024
2 parents 368ffff + 9aa6bca commit e254428
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
3 changes: 3 additions & 0 deletions docs/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -153,3 +153,6 @@ v1.11.1
- Make `submitit` optional if not using SLURM
- Make blender addons optional if not using relevant assets (rocks/terrain/snowlayer)
- Make `bnurbs` CPython module optional and not installed by default

v1.11.2
- Fix opengl_gt input file symlink missing
2 changes: 1 addition & 1 deletion infinigen/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
import logging
from pathlib import Path

__version__ = "1.11.1"
__version__ = "1.11.2"


def repo_root():
Expand Down
5 changes: 1 addition & 4 deletions infinigen/tools/process_static_meshes.py
Original file line number Diff line number Diff line change
Expand Up @@ -40,10 +40,7 @@
) as f:
json.dump(current_json, f)
for npz_path in os.listdir(static_mesh_folder):
if (
npz_path.endswith(".npz")
and not (static_mesh_folder / npz_path).exists()
):
if npz_path.endswith(".npz"):
os.symlink(
static_mesh_folder / npz_path,
args.target_frames_dir
Expand Down

0 comments on commit e254428

Please sign in to comment.