-
Notifications
You must be signed in to change notification settings - Fork 9
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
MAINT, DEP: Restructure the various qmflows
sub packages
#293
Merged
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
0f47a6d
to
f8398c6
Compare
Codecov Report
@@ Coverage Diff @@
## master #293 +/- ##
===========================================
- Coverage 81.54% 44.66% -36.89%
===========================================
Files 42 59 +17
Lines 2265 2492 +227
Branches 379 417 +38
===========================================
- Hits 1847 1113 -734
- Misses 318 1291 +973
+ Partials 100 88 -12
📣 Codecov can now indicate which changes are the most critical in Pull Requests. Learn more |
b898ef0
to
e97af52
Compare
Restructure the sub-package into the following public namespaces: * `parsers` * `parsers.adf` * `parsers.cp2k` * `parsers.orca` * `parsers.utils` f parser
Restructure the sub-package into the following public namespaces: * `templates`
Restructure the sub-package into the following public namespaces: * `packages` Also deprecates four functions: * `registry` * `load_properties` * `SerMolecule` * `SerSettings`
* `example_freqs` * `example_H2O2_TS` * `example_generic_constraints` * `example_partial_geometry_opt`
`Settings` should be directly imported from the main namespace
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.
This PR restructures the various qmflows sub-modules.
This includes the following changes:
packages
,parsers
andtemplates
sub-packages; see below for the new (public) structure:qmflows.settings
module; theSettings
class should be imported from the mainqmflows
namespace.qmflows.parsers.cp2k.cp2KBasisParser
function tocp2k_basis_parser
.registry
,load_properties
,SerMolecule
andSerSettings
functions from theqmflows.packages
namespace.example_freqs
,example_H2O2_TS
,example_generic_constraints
andexample_partial_geometry_opt
functions fromqmflows
to theqmflows.examples
namespace.Note
For the sake of backwards compatiblity all affected functions and modules are still accessible under their old name, accompanied by a
DeprecationWarning
. This will change at some point in the future though.