-
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
Particle data #3251
Merged
Merged
Particle data #3251
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Codecov Report
@@ Coverage Diff @@
## python #3251 +/- ##
======================================
- Coverage 85% 85% -1%
======================================
Files 530 531 +1
Lines 25795 25796 +1
======================================
Hits 22168 22168
- Misses 3627 3628 +1
Continue to review full report at Codecov.
|
jngrad
approved these changes
Oct 15, 2019
bors r+ |
bors bot
added a commit
that referenced
this pull request
Oct 15, 2019
3248: Fix cmake install on dev branch r=KaiSzuttor a=jngrad Porting #3228 to the dev branch Description of changes: - fix the CMake build system to include libraries in the list of installed files and test it in a dedicated CI job - fix the versioning of Cython .so shared objects - simplify the CMake tests 3251: Particle data r=jngrad a=fweik Fixes #3157. Description of changes: - Split definition of `struct Particle` from rest of particle data. Co-authored-by: Christoph Junghans <[email protected]> Co-authored-by: Jean-Noël Grad <[email protected]> Co-authored-by: Florian Weik <[email protected]>
Build succeeded |
bors bot
added a commit
that referenced
this pull request
Oct 17, 2019
3252: Factor out ParticleList r=jngrad a=fweik Follow up on #3251. Description of changes: - Pulling `ParticleList` out of `particle_data.hpp` to get better header disentanglement. 3256: Remove tutorial 10 and unused LaTeX files r=fweik a=jngrad Closes #3211 Description of changes: - removed tutorial 10 - removed unused LaTeX preambles 3257: Remove PDB parser feature r=fweik a=jngrad The consensus offline at the ICP and online in #1441 is to drop support of the PDB parser feature in favor of the dedicated python package MDAnalysis. Co-authored-by: Florian Weik <[email protected]> Co-authored-by: Jean-Noël Grad <[email protected]>
bors bot
added a commit
that referenced
this pull request
Oct 17, 2019
3252: Factor out ParticleList r=jngrad a=fweik Follow up on #3251. Description of changes: - Pulling `ParticleList` out of `particle_data.hpp` to get better header disentanglement. 3256: Remove tutorial 10 and unused LaTeX files r=fweik a=jngrad Closes #3211 Description of changes: - removed tutorial 10 - removed unused LaTeX preambles 3257: Remove PDB parser feature r=fweik a=jngrad The consensus offline at the ICP and online in #1441 is to drop support of the PDB parser feature in favor of the dedicated python package MDAnalysis. Co-authored-by: Florian Weik <[email protected]> Co-authored-by: Jean-Noël Grad <[email protected]>
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Fixes #3157.
Description of changes:
struct Particle
from rest of particle data.