Skip to content

Commit

Permalink
Remove references to vendored openvr (#768)
Browse files Browse the repository at this point in the history
  • Loading branch information
cgokmen committed Mar 10, 2022
1 parent 3527bef commit b152112
Show file tree
Hide file tree
Showing 7 changed files with 3 additions and 12 deletions.
2 changes: 0 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,6 @@ jobs:
pip install
build
--user
- name: Remove unnecessary files to reduce file size
run: rm -r igibson/render/openvr/samples
- name: Build a binary wheel and a source tarball
run: >-
python -m
Expand Down
1 change: 0 additions & 1 deletion MANIFEST.in
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,5 @@ include LICENSE

graft igibson
prune igibson/data
prune igibson/render/openvr/samples

global-exclude *.py[co]
1 change: 0 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -79,5 +79,4 @@ iGibson uses code from a few open source repositories. Without the efforts of th
- Caelan Garrett: [ss-pybullet](https://github.com/caelan/ss-pybullet)
- Sean Barrett: [stb](https://github.com/nothings/stb)
- Michał Siejak: [PBR](https://github.com/Nadrin/PBR)
- Valve Software: [OpenVR](https://github.com/ValveSoftware/openvr)
- [CryptoPP](https://www.cryptopp.com/)
3 changes: 1 addition & 2 deletions docker/igibson/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -32,8 +32,7 @@ ENV PATH /miniconda/envs/igibson/bin:$PATH
# NOTE: This needs to be updated in-step with the base cudagl image so the tensor renderer works
RUN pip install torch==1.10.0+cu113 torchvision==0.11.1+cu113 torchaudio==0.10.0+cu113 -f https://download.pytorch.org/whl/cu113/torch_stable.html --no-cache-dir

RUN git clone --depth 1 https://github.com/StanfordVL/iGibson /opt/iGibson --recursive && \
rm -rf /opt/iGibson/igibson/render/openvr/samples
RUN git clone --depth 1 https://github.com/StanfordVL/iGibson /opt/iGibson --recursive

WORKDIR /opt/iGibson
RUN pip install --no-cache-dir -e .
Expand Down
3 changes: 1 addition & 2 deletions docker/tensorflow/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -34,8 +34,7 @@ ENV PATH /miniconda/envs/igibson/bin:$PATH
# NOTE: This needs to be updated in-step with the base cudagl image so the tensor renderer works
RUN pip install tensorflow-gpu==1.15.0

RUN git clone --depth 1 https://github.com/StanfordVL/iGibson /opt/iGibson --recursive && \
rm -rf /opt/iGibson/igibson/render/openvr/samples
RUN git clone --depth 1 https://github.com/StanfordVL/iGibson /opt/iGibson --recursive

WORKDIR /opt/iGibson
RUN pip install --no-cache-dir -e .
Expand Down
1 change: 0 additions & 1 deletion docs/acknowledgements.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,5 +8,4 @@ iGibson includes modified code from several open source repositories. Without th
- Caelan Garrett: [ss-pybullet](https://github.com/caelan/ss-pybullet)
- Sean Barrett: [stb](https://github.com/nothings/stb)
- Michał Siejak: [PBR](https://github.com/Nadrin/PBR)
- Valve Software: [OpenVR](https://github.com/ValveSoftware/openvr)
- [CryptoPP](https://www.cryptopp.com/)
4 changes: 1 addition & 3 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[tool.black]
line-length = 120
target-version = ['py27', 'py36', 'py37']
force-exclude = 'igibson/(data|external|render/(cpp|cryptopp|glad|glfw|glm|openvr|pybind11|sranipal))'
force-exclude = 'igibson/(data|external|render/(cpp|cryptopp|glad|glfw|glm|pybind11|sranipal))'

[tool.isort]
profile = "black"
Expand All @@ -16,7 +16,6 @@ extend_skip_glob = [
'igibson/render/glad/*',
'igibson/render/glfw/*',
'igibson/render/glm/*',
'igibson/render/openvr/*',
'igibson/render/pybind11/*',
'igibson/render/sranipal/*',
]
Expand All @@ -28,7 +27,6 @@ exclude = [
'igibson/docker',
'igibson/render/cryptopp',
'igibson/render/cpp',
'igibson/render/openvr',
'igibson/render/glfw',
'igibson/render/glad',
'igibson/render/glm',
Expand Down

0 comments on commit b152112

Please sign in to comment.