Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: downgrade physics dep. to 10.1 #467

Merged
merged 2 commits into from
Nov 28, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -328,7 +328,7 @@ ENDIF ()

### Open Space Toolkit ▸ Physics [11.x.y]

FIND_PACKAGE ("OpenSpaceToolkitPhysics" "11" REQUIRED)
FIND_PACKAGE ("OpenSpaceToolkitPhysics" "10" REQUIRED)

IF (NOT OpenSpaceToolkitPhysics_FOUND)

Expand Down
2 changes: 1 addition & 1 deletion bindings/python/requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,4 @@
open-space-toolkit-core~=4.1
open-space-toolkit-io~=4.0
open-space-toolkit-mathematics~=4.3
open-space-toolkit-physics~=11.1
open-space-toolkit-physics~=10.1
2 changes: 1 addition & 1 deletion docker/development/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -148,7 +148,7 @@ RUN mkdir -p /tmp/open-space-toolkit-mathematics \
## Open Space Toolkit ▸ Physics

ARG TARGETPLATFORM
ARG OSTK_PHYSICS_MAJOR="11"
ARG OSTK_PHYSICS_MAJOR="10"

## Force an image rebuild when new Physics minor or patch versions are detected
ADD https://api.github.com/repos/open-space-collective/open-space-toolkit-physics/git/matching-refs/tags/${OSTK_PHYSICS_MAJOR} /tmp/open-space-toolkit-physics/versions.json
Expand Down