Skip to content

Commit

Permalink
Merge branch 'master' into 890-footstepvis
Browse files Browse the repository at this point in the history
  • Loading branch information
ria-upreti authored Nov 30, 2024
2 parents c50108d + 8318783 commit 09f0f79
Show file tree
Hide file tree
Showing 54 changed files with 1,289 additions and 78 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/test_pytest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -52,9 +52,9 @@ jobs:
run: |
cd $HOME/catkin_ws/src/soccerbot
source /opt/ros/noetic/setup.bash
pip3 install pyOpenSSL==23.0.0
pip install pyOpenSSL==23.0.0
python3 -m pip install -U --user pip
pip3 install -r requirements.txt -f https://download.pytorch.org/whl/torch/ -f https://download.pytorch.org/whl/torchvision/
pip install -r tools/setup/requirements.txt
- name: Build Soccerbot
run: |
cd $HOME/catkin_ws
Expand Down
5 changes: 4 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
# Python compiled files
__pycache__/
*.pyc
.idea

# webots cache files
soccer_webots/protos/*.cache
soccer_webots/protos/Soccerbot_meshes/*.cache
Expand All @@ -34,3 +34,6 @@ venv/
.mypy_cache/
cuda-ubuntu2004.pin.1
*.webm

# vscode
.vscode/*
57 changes: 57 additions & 0 deletions .idea/codeStyles/Project.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

5 changes: 5 additions & 0 deletions .idea/codeStyles/codeStyleConfig.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

37 changes: 37 additions & 0 deletions .idea/inspectionProfiles/Project_Default.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 6 additions & 0 deletions .idea/inspectionProfiles/profiles_settings.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

7 changes: 7 additions & 0 deletions .idea/misc.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 8 additions & 0 deletions .idea/modules.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

15 changes: 15 additions & 0 deletions .idea/soccerbot.iml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 8 additions & 0 deletions .idea/vcs.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

137 changes: 137 additions & 0 deletions .idea/workspace.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 4 additions & 4 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ x-exclude: &exclude

repos:
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v4.5.0
rev: v5.0.0
hooks:
- id: check-symlinks
<<: *exclude
Expand All @@ -18,7 +18,7 @@ repos:
- id: prettier
<<: *exclude
- repo: https://github.com/psf/black
rev: 24.3.0
rev: 22.3.0
hooks:
- id: black
<<: *exclude
Expand All @@ -34,7 +34,7 @@ repos:
- black
<<: *exclude
- repo: https://github.com/PyCQA/flake8
rev: 7.0.0
rev: 7.1.1
hooks:
- id: flake8
<<: *exclude
Expand All @@ -57,5 +57,5 @@ repos:
# rev: '' # Use the sha / tag you want to point at
# hooks:
# - id: mypy
# exclude: "cmake-build-debug|setup.py|external"
# exclude: "cmake-build-debug|setup.py|external|soccer_strategy|soccer_common|soccer_msgs|soccer_localization|soccer_description|soccer_webots|test_integration.py"
# args: ["--config-file","pyproject.toml"]
4 changes: 4 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -96,3 +96,7 @@ https://github.com/dfki-ric/phobos/commit/757d7b58b41240ea4aa54e20ddd1665072e6da
rosrun xacro xacro -o bez2.urdf bez2.xacro
todo look into xrdp remote desktop
uv pip install -r tools/setup/requirements.txt --python $(which python) --prefix $(python -m site --user-base)
to compare
uv pip install -r tools/setup/requirements.txt --python $(which python) --prefix $(python -m site --user-base) --no-cache-dir --force-reinstall
21 changes: 0 additions & 21 deletions external/.dockerignore
Original file line number Diff line number Diff line change
@@ -1,24 +1,3 @@
webots/.*
webots/.clang-format
webots/msys64
webots/webots
webots/webots.lnk
webots/webots_debug_output.txt
webots/util
webots/bin/webots-bin
webots/**/*.exe
webots/**/*.o
webots/**/*.d
webots/**/*.class
webots/**/*.so
webots/**/*.dylib
webots/**/*.dll
webots/**/*.lib
webots/**/*.a
webots/**/*.cof
webots/**/*.hex
webots/**/*.pyc
webots/**/*.gch
GameController/.*
GameController/build/
hlvs_webots/controllers/referee/meshes/*
Expand Down
Loading

0 comments on commit 09f0f79

Please sign in to comment.