Skip to content

Commit

Permalink
Merge branch 'og-develop' into fix/updates-from-sampling
Browse files Browse the repository at this point in the history
  • Loading branch information
cgokmen authored Mar 18, 2024
2 parents 791e6a0 + ea0095b commit 52cceca
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion omnigibson/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
import nest_asyncio
nest_asyncio.apply()

__version__ = "0.2.1"
__version__ = "1.0.0"

log.setLevel(logging.DEBUG if gm.DEBUG else logging.INFO)

Expand Down
4 changes: 2 additions & 2 deletions omnigibson/utils/asset_utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -387,7 +387,7 @@ def download_assets():
with tempfile.TemporaryDirectory() as td:
tmp_file = os.path.join(td, "og_assets.tar.gz")
os.makedirs(gm.ASSET_PATH, exist_ok=True)
path = "https://storage.googleapis.com/gibson_scenes/og_assets.tar.gz"
path = "https://storage.googleapis.com/gibson_scenes/og_assets_1_0_0.tar.gz"
log.info(f"Downloading and decompressing demo OmniGibson assets from {path}")
assert urlretrieve(path, tmp_file, show_progress), "Assets download failed."
assert subprocess.call(["tar", "-zxf", tmp_file, "--strip-components=1", "--directory", gm.ASSET_PATH]) == 0, "Assets extraction failed."
Expand Down Expand Up @@ -447,7 +447,7 @@ def download_og_dataset():
else:
tmp_file = os.path.join(tempfile.gettempdir(), "og_dataset.tar.gz")
os.makedirs(gm.DATASET_PATH, exist_ok=True)
path = "https://storage.googleapis.com/gibson_scenes/og_dataset.tar.gz"
path = "https://storage.googleapis.com/gibson_scenes/og_dataset_1_0_0.tar.gz"
log.info(f"Downloading and decompressing demo OmniGibson dataset from {path}")
assert urlretrieve(path, tmp_file, show_progress), "Dataset download failed."
assert subprocess.call(["tar", "-zxf", tmp_file, "--strip-components=1", "--directory", gm.DATASET_PATH]) == 0, "Dataset extraction failed."
Expand Down
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@

setup(
name="omnigibson",
version="0.2.1",
version="1.0.0",
author="Stanford University",
long_description_content_type="text/markdown",
long_description=long_description,
Expand All @@ -34,7 +34,7 @@
"trimesh~=4.0.8",
"h5py~=3.10.0",
"cryptography~=41.0.7",
"bddl~=3.4.0b4",
"bddl~=3.5.0",
"opencv-python~=4.8.1",
"nest_asyncio~=1.5.8",
"imageio~=2.33.1",
Expand Down

0 comments on commit 52cceca

Please sign in to comment.