-
Notifications
You must be signed in to change notification settings - Fork 875
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
Update VASP input sets for atomate2
compatibility
#3835
Merged
Merged
Changes from 1 commit
Commits
Show all changes
22 commits
Select commit
Hold shift + click to select a range
63728ff
updates for consistency with atomate2 updates
esoteric-ephemera a1295b9
Merge remote-tracking branch 'upstream/master'
esoteric-ephemera d97ce17
lint
esoteric-ephemera 04eb1ad
further patch for atomate2 support, make sure tests are respected or …
esoteric-ephemera ed0e8ec
linting
esoteric-ephemera a31f08b
Merge branch 'materialsproject:master' into master
esoteric-ephemera 6646b98
merge DictSet into VaspInputSet, deprecate DictSet as an alias of Vas…
janosh c50db64
test_dict_set_alias subclass and deprecation message
janosh cf8cedc
Change deprecation warning to be on init of DictSet
esoteric-ephemera 51b25f5
remove deprecated decorator, only works for functions, error msg less…
esoteric-ephemera 590831f
Merge branch 'materialsproject:master' into master
esoteric-ephemera e873ac3
move remaining VaspInputGenerator features to PMG
esoteric-ephemera d035806
pre-commit auto-fixes
pre-commit-ci[bot] d599611
added tests
esoteric-ephemera e1e1a70
add incar, kpoints, poscar, potcar attr to io.vasp.inputs.VaspInput +…
esoteric-ephemera ddf74e1
linted
esoteric-ephemera c335ce7
Bump rexml from 3.2.5 to 3.2.8 in /docs (#3836)
dependabot[bot] 9740bba
Bump nokogiri from 1.16.2 to 1.16.5 in /docs (#3828)
dependabot[bot] 24ad8e9
shift features of VaspInputSet.write_input to VaspInput.write_input
esoteric-ephemera c9117f2
pre-commit /linting
esoteric-ephemera 45c51ec
move file transfer from write_input method of VaspInputSet to VaspInput
esoteric-ephemera 576db8e
add missing `output_dir` kwarg to vaspinputset.write_input
esoteric-ephemera File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
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
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.
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.
@DanielYang59 looks like your recent changes to
@deprecated
inmonty
put the new line in front of the semicolon. looks weird to start a line with a semicolonThere 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 catching this and apologize for this overlook.
https://github.com/materialsvirtuallab/monty/blob/7568d6abcfc8dec14ba3022523656d5f9217835e/monty/dev.py#L94-L109
It looks like the semicolon was original there, and the deprecation message we inserted was too long so a line break was inserted. It would be a bit tricky to properly format this without breaking, I would think about this later
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.
One other change in monty to make if you can add it to the same PR for the message change: this decorator is just for functions. Would be great if there's a way to decorate classes too