Skip to content
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
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@

The aim of this repository is to exemplify how to develop a new wrapper for
SimPhoNy. **Before you start**, please have a look at the
[SimPhoNy documentation](https://simphony.readthedocs.io/en/v4.0.0rc4/)
[SimPhoNy documentation](https://simphony.readthedocs.io/en/v4.0.0/)
(in particular the
[wrapper development section](https://simphony.readthedocs.io/en/v4.0.0rc4/developers/wrappers.html)).
[wrapper development section](https://simphony.readthedocs.io/en/v4.0.0/developers/wrappers.html)).

Clone this repository to use it as a template to create your own
wrapper. It provides project configuration files, a folder structure, an
Expand Down
2 changes: 1 addition & 1 deletion package_name/wrapper.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ class SimulationWrapper(Wrapper):

Note: This implementation only makes use of the mandatory wrapper methods,
as well as the `compute` method. Visit the SimPhoNy documentation
https://simphony.readthedocs.io/en/v4.0.0rc4/developers/wrappers.html
https://simphony.readthedocs.io/en/v4.0.0/developers/wrappers.html
to learn more about the additional possibilities and the meaning of each
method.
"""
Expand Down
2 changes: 1 addition & 1 deletion tests/test_integration.py
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ def test_types_engine(self):
wrapper = session.driver.interface
# read the diagram on the SimPhoNy documentation to understand how the
# wrapper object was retrieved from the session object:
# https://simphony.readthedocs.io/en/v4.0.0rc4/developers/
# https://simphony.readthedocs.io/en/v4.0.0/developers/
# wrappers.html#wrapper-abstract-class
session.driver.interface = self._prepare_wrapper_for_types_test(
wrapper
Expand Down