-
Notifications
You must be signed in to change notification settings - Fork 101
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
Transition to pymatgen VASP input sets #854
Changes from 26 commits
fe04d57
d3824fa
2d84c67
e580080
e348dfe
fbb94a4
14f67fe
9e83245
23a9cf0
9797971
a4945e8
0ae9cb9
e73c239
ec26140
5610451
8845fd7
4de6f7c
1828d09
319998e
b7321cb
a3ff18b
fdaecbf
59318f0
a6af306
b86f4f1
2336732
45f1667
895c92f
a1faf6f
a10163e
7605b9e
4303f06
5b10796
7476f8a
5fe41c8
172239b
734e170
59e7250
afdaf9c
0c31ccd
a2f627d
5403bab
a499738
a7a5559
4e62a8c
5944320
2a6f8cf
8b0a080
4322fbf
10008f6
c3dcef0
a37612b
376b13f
0cfbcfb
7194211
99a712a
3f923aa
b6e7aaa
7427e13
93d3af2
4a56539
624f551
56d7731
bd98d1b
2a1fb54
c528153
c87df9c
6176d49
34f937d
14d7a5e
1232090
fedf257
9fb14e9
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -35,11 +35,11 @@ def copy_files( | |
either "usernamehost" or just "host" in which case the username | ||
will be inferred from the current user. If ``None``, the local filesystem will | ||
be used as the source. | ||
include_files : None or list of (str or .Path) | ||
include_files : None | list[str | Path] | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Is there a reason you changed the doc strings? I think the correct style is to use "or" in the string since it is human readable. E.g. see here https://numpydoc.readthedocs.io/en/latest/format.html#parameters There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I didn't make these changes, they're from here. But I'll revert them There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. OK reverted! |
||
Filenames to include as a list of str or Path objects given relative to | ||
``src_dir``. Glob file paths are supported, e.g. "\*.dat". If ``None``, all | ||
files in the source directory will be copied. | ||
exclude_files : None or list of (str or .Path) | ||
exclude_files : None | list[str | Path] | ||
Filenames to exclude. Supports glob file matching, e.g., "\*.dat". | ||
suffix : str | ||
A suffix to add to copied files. For example ".original". | ||
|
@@ -97,11 +97,11 @@ def delete_files( | |
The hostname used to specify a remote filesystem. Can be given as either | ||
"username@host" or just "host" in which case the username will be | ||
inferred from the current user. If ``None``, the local filesystem will be used. | ||
include_files : None or list of (str or Path) | ||
include_files : None or list of (str | Path) | ||
Filenames to include as a list of str or Path objects given relative to | ||
directory. Glob file paths are supported, e.g. "\*.dat". If ``None``, all files | ||
in the directory will be deleted. | ||
exclude_files : None or list of (str or Path) | ||
exclude_files : None or list of (str | Path) | ||
Filenames to exclude. Supports glob file matching, e.g., "\*.dat". | ||
allow_missing : bool | ||
Whether to error if a file in ``include_files`` is not present in the directory. | ||
|
@@ -188,11 +188,11 @@ def gzip_files( | |
The hostname used to specify a remote filesystem. Can be given as either | ||
"username@host" or just "host" in which case the username will be | ||
inferred from the current user. If ``None``, the local filesystem will be used. | ||
include_files : None or list of (str or Path) | ||
include_files : None or list of (str | Path) | ||
Filenames to include as a list of str or Path objects given relative to | ||
directory. Glob file paths are supported, e.g. "\*.dat". If ``None``, all files | ||
in the directory will be gzipped. | ||
exclude_files : None or list of (str or Path) | ||
exclude_files : None or list of (str | Path) | ||
Filenames to exclude. Supports glob file matching, e.g., "\*.dat". | ||
allow_missing : bool | ||
Whether to error if a file in ``include_files`` is not present in the directory. | ||
|
@@ -241,11 +241,11 @@ def gunzip_files( | |
The hostname used to specify a remote filesystem. Can be given as either | ||
"username@host" or just "host" in which case the username will be | ||
inferred from the current user. If ``None``, the local filesystem will be used. | ||
include_files : None or list of (str or Path) | ||
include_files : None or list of (str | Path) | ||
Filenames to include as a list of str or Path objects given relative to | ||
directory. Glob file paths are supported, e.g. "\*.dat". If ``None``, all | ||
gzipped files in the directory will be gunzipped. | ||
exclude_files : None or list of (str or Path) | ||
exclude_files : None or list of (str | Path) | ||
Filenames to exclude. Supports glob file matching, e.g., "\*.dat". | ||
allow_missing : bool | ||
Whether to error if a file in ``include_files`` is not present in the directory. | ||
|
@@ -287,11 +287,11 @@ def find_and_filter_files( | |
A file client. | ||
directory : str or Path | ||
A directory in which to find files. | ||
include_files : None or list of (str or Path) | ||
include_files : None or list of (str | Path) | ||
Filenames to include as a list of str or Path objects given relative to | ||
directory. Glob file paths are supported, e.g. "\*.dat". If ``None``, all files | ||
in the source directory will be returned. | ||
exclude_files : None or list of (str or Path) | ||
exclude_files : None or list of (str | Path) | ||
Filenames to exclude. Supports glob file matching, e.g., "\*.dat". | ||
host : str or None | ||
A hostname used to specify a remote filesystem. Can be given as either | ||
|
This file was deleted.
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.
This can be reverted 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.
Will do as soon as it's on PyPI