-
Notifications
You must be signed in to change notification settings - Fork 189
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
ORM: Fix typing of aiida.orm.nodes.data.code
module
#5830
Conversation
b87d8d0
to
3889d66
Compare
Heya, so as I've mentioned before, the problem with using For starters, I don't think Then for the code:
So, basically, I think you should change all the |
3889d66
to
bf82003
Compare
But what you are describing is a limitation of the The only thing maybe is if a user runs AiiDA on a windows machine (is this even possible?) uses |
bf82003
to
44cb2ee
Compare
The |
At present the problem is, by wrapping things in |
Ah I see now, yeah you are right, that is a problem. |
44cb2ee
to
1b234a0
Compare
The original type `PurePath` being returned by `filepath_executable` and `get_execname` has been changed to `PurePosixPath` since currently the rest of AiiDA's infrastructure requires/assumes that `Computer`s are running POSIX operating systems.
1b234a0
to
158d331
Compare
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.
cheers
Fixes #5819