-
Notifications
You must be signed in to change notification settings - Fork 15
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
Removing MPError class in favor of baseclasses Error. #12
Conversation
…cumentation also.
setup.py
Outdated
@@ -24,6 +24,6 @@ | |||
packages=[ | |||
"multipoint", | |||
], | |||
install_requires=["numpy>=1.16", "mpi4py>=3.0"], | |||
install_requires=["numpy>=1.16", "mpi4py>=3.0", "mdolab-baseclasses>=1.3"], |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Is the plan to release v1.3 today?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I was contemplating that since we have several new features and functions there. Perhaps we want to wait a bit more for a few other changes to settle in and then bump the minor release. I will change this to v1.2.4 since this is the first version that has the Error
class. Should be there now.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks for adding more examples and checking the code! See my comments below
@@ -4,6 +4,7 @@ | |||
import copy | |||
from mpi4py import MPI | |||
import numpy as np | |||
from baseclasses.utils import Error |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Why do we need this additional import here?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The createGroups
function in there uses it.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I see, I got confused by the single commit
@@ -22,4 +22,5 @@ For stability we recommend cloning or checking out a tagged release. | |||
:maxdepth: 2 | |||
|
|||
tutorial | |||
examples |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I believe you are missing the examples.rst
file that calls the ex1.py
script via literalinclude
. The examples are not showing up in the docs.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Forgot to commit that one. Should be there now.
Purpose
This PR,
Type of change
What types of change is it?
Select the appropriate type(s) that describe this PR
Checklist
Put an
x
in the boxes that apply.flake8
andblack
to make sure the code adheres to PEP-8 and is consistently formatted