-
Notifications
You must be signed in to change notification settings - Fork 4
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
Md analysis version update #138
Conversation
Pull Request Test Coverage Report for Build 12279327729Details
💛 - Coveralls |
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.
See my comment.
atomisticparsers/gromacs/parser.py
Outdated
@@ -397,6 +396,7 @@ def get_force_field_parameters(self, gromacs_version: str = None) -> List[Dict]: | |||
) | |||
return [] | |||
gromacs_version = gromacs_version.split('.')[0] if gromacs_version else None | |||
# ! This warning does not get triggered, why? |
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.
Can we try to address this comment before merging? Is the version actually "2024" or it's something like "2024.1".
If it's necessary to leave the comment then at least add some info so it is clear what exactly what context the comment is referrring
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.
No, this is an old comment. An earlier error prevented the code from reaching this check at some point. I removed the comment 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.
Removed old comment.
atomisticparsers/gromacs/parser.py
Outdated
@@ -397,6 +396,7 @@ def get_force_field_parameters(self, gromacs_version: str = None) -> List[Dict]: | |||
) | |||
return [] | |||
gromacs_version = gromacs_version.split('.')[0] if gromacs_version else None | |||
# ! This warning does not get triggered, why? |
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.
No, this is an old comment. An earlier error prevented the code from reaching this check at some point. I removed the comment now.
Update
MDAnalysis
to2.8.0
to supportGromacs 2024
. Relax Python dependency becauseMDAnalysis 2.8.0
requiresPython >= 3.10
, butnomad-lab
supportsPython >= 3.9
.