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

Updated version of documentation #449

Merged
merged 40 commits into from
Nov 19, 2024
Merged
Changes from 1 commit
Commits
Show all changes
40 commits
Select commit Hold shift + click to select a range
905e5dc
Remove the automock of Sofa
damienmarchal May 24, 2023
225a4c6
WIPPP
damienmarchal Jun 5, 2023
582ec1a
WIP
damienmarchal Jun 7, 2023
d21a12f
WIP2
damienmarchal Jun 7, 2023
bd12e8e
Remove sphinx-stubs as don't need them anymore.
damienmarchal Jun 7, 2023
0350f34
FIX Documentation
damienmarchal Jun 7, 2023
53aa155
W
damienmarchal Jun 7, 2023
3271198
WIP
damienmarchal Jun 7, 2023
5ff0262
WIP
damienmarchal Jun 7, 2023
2f25ac7
W
damienmarchal Jun 7, 2023
8b0a564
WIP
damienmarchal Jun 7, 2023
3f78144
W
damienmarchal Jun 7, 2023
5b38e02
W
damienmarchal Jun 7, 2023
0605073
W
damienmarchal Jun 7, 2023
34771db
W
damienmarchal Jun 8, 2023
43a29ae
W
damienmarchal Jun 8, 2023
8b6eb9d
W
damienmarchal Jun 8, 2023
2660fe1
D
damienmarchal Jun 8, 2023
75dae83
review and clean of documentation
hugtalbot Aug 29, 2023
ba0fbbc
Update requirements for automatization
hugtalbot Aug 29, 2023
194733c
Add action to generate doc on new release
hugtalbot Aug 29, 2023
0d58bdd
Up
damienmarchal Aug 30, 2023
d69e16f
Clean code, format and add full documentation
hugtalbot Aug 31, 2023
ebd0624
Merge branch 'master' into xp-readthedocs
hugtalbot Aug 31, 2023
36af3c5
Add as a trigger of action the edit of a release
hugtalbot Aug 31, 2023
0e28dc3
Merge branch 'master' into xp-readthedocs
hugtalbot Aug 31, 2023
a9ac53b
FIX
damienmarchal Aug 31, 2023
ca2ce2e
Merge remote-tracking branch 'origin/xp-readthedocs' into xp-readthedocs
damienmarchal Aug 31, 2023
da8fb59
Various documentation fixes.
damienmarchal Aug 31, 2023
4319f5c
Refactor the documentation organization & sections & subsection so th…
damienmarchal Sep 1, 2023
cc41156
Last improvements before upload
hugtalbot Sep 5, 2023
114ead7
Merge remote-tracking branch 'origin/master' into xp-readthedocs
damienmarchal Sep 13, 2024
acb13ef
We shouldent import scipy for our users. They are competent enough
damienmarchal Sep 13, 2024
8d82fba
FIX
damienmarchal Sep 13, 2024
fec35a5
Merge branch 'master' into xp-readthedocs
damienmarchal Oct 17, 2024
cd3a3b7
Fix broken tests.
damienmarchal Oct 17, 2024
d5c41ff
Remove an introduced change in SofaRuntime.
damienmarchal Oct 17, 2024
95f5ded
Update .github/workflows/build_docs.yml
damienmarchal Nov 8, 2024
f7e9dd1
Update CMakeLists.txt
damienmarchal Nov 8, 2024
3cb9362
Delete .github/workflows/build_docs.yml
damienmarchal Nov 13, 2024
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
7 changes: 0 additions & 7 deletions bindings/SofaRuntime/package/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,13 +29,6 @@
Sofa.msg_error("SofaRuntime", 'numpy is mandatory for SofaPython3')
sys.exit(1)

try:
import scipy
except ModuleNotFoundError as error:
Sofa.msg_warning("SofaRuntime",str(error))
Sofa.msg_warning("SofaRuntime", "scipy is strongly recommended for SofaPython3")
pass

# Keep a list of the modules always imported in the Sofa-PythonEnvironment
try:
__SofaPythonEnvironment_importedModules__
Expand Down