-
Notifications
You must be signed in to change notification settings - Fork 3
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
add ruff formatter #266
add ruff formatter #266
Changes from 1 commit
d4f0fb7
67afb6b
0e9d70d
7221bae
044765d
238f401
ae183bd
e98f305
9cf77a7
647542a
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 | ||||||||||||||||||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
@@ -1,12 +1,19 @@ | ||||||||||||||||||||||||||||||||||||||||
def get_setup_version_and_pattern(setup_content): | ||||||||||||||||||||||||||||||||||||||||
depend_lst, version_lst = [], [] | ||||||||||||||||||||||||||||||||||||||||
for l in setup_content: | ||||||||||||||||||||||||||||||||||||||||
if '==' in l: | ||||||||||||||||||||||||||||||||||||||||
lst = l.split('[')[-1].split(']')[0].replace(' ', '').replace('"', '').replace("'", '').split(',') | ||||||||||||||||||||||||||||||||||||||||
if "==" in l: | ||||||||||||||||||||||||||||||||||||||||
lst = ( | ||||||||||||||||||||||||||||||||||||||||
l.split("[")[-1] | ||||||||||||||||||||||||||||||||||||||||
.split("]")[0] | ||||||||||||||||||||||||||||||||||||||||
.replace(" ", "") | ||||||||||||||||||||||||||||||||||||||||
.replace('"', "") | ||||||||||||||||||||||||||||||||||||||||
.replace("'", "") | ||||||||||||||||||||||||||||||||||||||||
.split(",") | ||||||||||||||||||||||||||||||||||||||||
) | ||||||||||||||||||||||||||||||||||||||||
for dep in lst: | ||||||||||||||||||||||||||||||||||||||||
if dep != '\n': | ||||||||||||||||||||||||||||||||||||||||
version_lst.append(dep.split('==')[1]) | ||||||||||||||||||||||||||||||||||||||||
depend_lst.append(dep.split('==')[0]) | ||||||||||||||||||||||||||||||||||||||||
if dep != "\n": | ||||||||||||||||||||||||||||||||||||||||
version_lst.append(dep.split("==")[1]) | ||||||||||||||||||||||||||||||||||||||||
depend_lst.append(dep.split("==")[0]) | ||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||
version_high_dict = {d: v for d, v in zip(depend_lst, version_lst)} | ||||||||||||||||||||||||||||||||||||||||
return version_high_dict | ||||||||||||||||||||||||||||||||||||||||
|
@@ -16,14 +23,14 @@ def get_env_version(env_content): | |||||||||||||||||||||||||||||||||||||||
read_flag = False | ||||||||||||||||||||||||||||||||||||||||
depend_lst, version_lst = [], [] | ||||||||||||||||||||||||||||||||||||||||
for l in env_content: | ||||||||||||||||||||||||||||||||||||||||
if 'dependencies:' in l: | ||||||||||||||||||||||||||||||||||||||||
if "dependencies:" in l: | ||||||||||||||||||||||||||||||||||||||||
read_flag = True | ||||||||||||||||||||||||||||||||||||||||
elif read_flag: | ||||||||||||||||||||||||||||||||||||||||
lst = l.replace('-', '').replace(' ', '').replace('\n', '').split("=") | ||||||||||||||||||||||||||||||||||||||||
lst = l.replace("-", "").replace(" ", "").replace("\n", "").split("=") | ||||||||||||||||||||||||||||||||||||||||
if len(lst) == 2: | ||||||||||||||||||||||||||||||||||||||||
depend_lst.append(lst[0]) | ||||||||||||||||||||||||||||||||||||||||
version_lst.append(lst[1]) | ||||||||||||||||||||||||||||||||||||||||
return {d:v for d, v in zip(depend_lst, version_lst)} | ||||||||||||||||||||||||||||||||||||||||
return {d: v for d, v in zip(depend_lst, version_lst)} | ||||||||||||||||||||||||||||||||||||||||
Comment on lines
+26
to
+33
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. Replace the ambiguous variable name - for l in env_content:
- if "dependencies:" in l:
+ for line in env_content:
+ if "dependencies:" in line:
- lst = l.replace("-", "").replace(" ", "").replace("\n", "").split("=")
+ lst = line.replace("-", "").replace(" ", "").replace("\n", "").split("=") Committable suggestion
Suggested change
|
||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||
def update_dependencies(setup_content, version_low_dict, version_high_dict): | ||||||||||||||||||||||||||||||||||||||||
|
@@ -35,27 +42,29 @@ def update_dependencies(setup_content, version_low_dict, version_high_dict): | |||||||||||||||||||||||||||||||||||||||
version_combo_dict[dep] = dep + "==" + ver | ||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||
setup_content_new = "" | ||||||||||||||||||||||||||||||||||||||||
pattern_dict = {d:d + "==" + v for d, v in version_high_dict.items()} | ||||||||||||||||||||||||||||||||||||||||
pattern_dict = {d: d + "==" + v for d, v in version_high_dict.items()} | ||||||||||||||||||||||||||||||||||||||||
for l in setup_content: | ||||||||||||||||||||||||||||||||||||||||
for k, v in pattern_dict.items(): | ||||||||||||||||||||||||||||||||||||||||
if v in l: | ||||||||||||||||||||||||||||||||||||||||
l = l.replace(v, version_combo_dict[k]) | ||||||||||||||||||||||||||||||||||||||||
setup_content_new +=l | ||||||||||||||||||||||||||||||||||||||||
setup_content_new += l | ||||||||||||||||||||||||||||||||||||||||
Comment on lines
+45
to
+50
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. Replace the ambiguous variable name - for l in setup_content:
+ for line in setup_content:
- if v in l:
- l = l.replace(v, version_combo_dict[k])
- setup_content_new += l
+ if v in line:
+ line = line.replace(v, version_combo_dict[k])
+ setup_content_new += line Committable suggestion
Suggested change
|
||||||||||||||||||||||||||||||||||||||||
return setup_content_new | ||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||
if __name__ == "__main__": | ||||||||||||||||||||||||||||||||||||||||
with open('pyproject.toml', "r") as f: | ||||||||||||||||||||||||||||||||||||||||
with open("pyproject.toml", "r") as f: | ||||||||||||||||||||||||||||||||||||||||
setup_content = f.readlines() | ||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||
with open('environment.yml', "r") as f: | ||||||||||||||||||||||||||||||||||||||||
with open("environment.yml", "r") as f: | ||||||||||||||||||||||||||||||||||||||||
env_content = f.readlines() | ||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||
setup_content_new = update_dependencies( | ||||||||||||||||||||||||||||||||||||||||
setup_content=setup_content[2:], | ||||||||||||||||||||||||||||||||||||||||
version_low_dict=get_env_version(env_content=env_content), | ||||||||||||||||||||||||||||||||||||||||
version_high_dict=get_setup_version_and_pattern(setup_content=setup_content[2:]), | ||||||||||||||||||||||||||||||||||||||||
version_high_dict=get_setup_version_and_pattern( | ||||||||||||||||||||||||||||||||||||||||
setup_content=setup_content[2:] | ||||||||||||||||||||||||||||||||||||||||
), | ||||||||||||||||||||||||||||||||||||||||
) | ||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||
with open('pyproject.toml', "w") as f: | ||||||||||||||||||||||||||||||||||||||||
with open("pyproject.toml", "w") as f: | ||||||||||||||||||||||||||||||||||||||||
f.writelines("".join(setup_content[:2]) + setup_content_new) |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
repos: | ||
- repo: https://github.com/astral-sh/ruff-pre-commit | ||
rev: v0.4.4 | ||
hooks: | ||
- id: ruff | ||
name: ruff lint | ||
args: ["--fix"] | ||
files: ^atomistics/ | ||
- id: ruff-format | ||
name: ruff format |
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -135,7 +135,8 @@ def fit_leastsq( | |
""" | ||
# http://stackoverflow.com/questions/14581358/getting-standard-errors-on-fitted-parameters-using-the-optimize-leastsq-method-i | ||
|
||
errfunc = lambda p, x, y, fittype: fitfunction(p, x, fittype) - y | ||
def errfunc(p, x, y, fittype): | ||
return fitfunction(p, x, fittype) - y | ||
Comment on lines
+138
to
+139
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. Add a docstring and type hints to the def errfunc(p: tuple[float], x: np.ndarray, y: np.ndarray, fittype: str) -> np.ndarray:
"""
Calculate the error between the fitted function and the actual data.
Args:
p (tuple[float]): Fit parameters.
x (np.ndarray): Volumes.
y (np.ndarray): Energies.
fittype (str): Type of fit.
Returns:
np.ndarray: Error between the fitted function and the actual data.
"""
return fitfunction(p, x, fittype) - y |
||
|
||
pfit, pcov, infodict, errmsg, success = scipy.optimize.leastsq( | ||
errfunc, p0, args=(datax, datay, fittype), full_output=1, epsfcn=0.0001 | ||
|
@@ -153,7 +154,7 @@ def fit_leastsq( | |
for i in range(len(pfit)): | ||
try: | ||
error.append(np.absolute(pcov[i][i]) ** 0.5) | ||
except: | ||
except TypeError: | ||
Comment on lines
155
to
+157
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. Improve the error handling for the except TypeError:
error.append(0.00) |
||
error.append(0.00) | ||
pfit_leastsq = pfit | ||
perr_leastsq = np.array(error) | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,4 @@ | ||
import scipy.constants | ||
from phonopy.units import VaspToTHz, THzToEv, EvTokJmol | ||
|
||
kJ_mol_to_eV = 1000 / scipy.constants.Avogadro / scipy.constants.electron_volt | ||
kb = scipy.constants.physical_constants["Boltzmann constant in eV/K"][0] |
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,4 +5,4 @@ | |
setup( | ||
version=versioneer.get_version(), | ||
cmdclass=versioneer.get_cmdclass(), | ||
) | ||
) |
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -23,18 +23,20 @@ def test_calc_elastic(self): | |
num_of_point=5, | ||
eps_range=0.05, | ||
sqrt_eta=True, | ||
fit_order=2 | ||
fit_order=2, | ||
) | ||
task_dict = workflow.generate_structures() | ||
result_dict = evaluate_with_ase( | ||
task_dict=task_dict, | ||
ase_calculator=GPAW( | ||
xc="PBE", | ||
mode=PW(300), | ||
kpts=(3, 3, 3) | ||
) | ||
ase_calculator=GPAW(xc="PBE", mode=PW(300), kpts=(3, 3, 3)), | ||
) | ||
elastic_dict = workflow.analyse_structures(output_dict=result_dict) | ||
self.assertTrue(np.isclose(elastic_dict["elastic_matrix"][0, 0], 125.66807354, atol=1e-04)) | ||
self.assertTrue(np.isclose(elastic_dict["elastic_matrix"][0, 1], 68.41418321, atol=1e-04)) | ||
self.assertTrue(np.isclose(elastic_dict["elastic_matrix"][3, 3], 99.29916329, atol=1e-04)) | ||
self.assertTrue( | ||
np.isclose(elastic_dict["elastic_matrix"][0, 0], 125.66807354, atol=1e-04) | ||
) | ||
self.assertTrue( | ||
np.isclose(elastic_dict["elastic_matrix"][0, 1], 68.41418321, atol=1e-04) | ||
) | ||
self.assertTrue( | ||
np.isclose(elastic_dict["elastic_matrix"][3, 3], 99.29916329, atol=1e-04) | ||
) | ||
Comment on lines
+34
to
+42
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. Consider adding more assertions to verify the correctness of the elastic matrix calculations. self.assertTrue(
np.isclose(elastic_dict["elastic_matrix"][0, 0], 125.66807354, atol=1e-04)
)
self.assertTrue(
np.isclose(elastic_dict["elastic_matrix"][0, 1], 68.41418321, atol=1e-04)
)
self.assertTrue(
np.isclose(elastic_dict["elastic_matrix"][3, 3], 99.29916329, atol=1e-04)
)
# Additional assertions
self.assertTrue(
np.allclose(
elastic_dict["elastic_matrix"],
np.array([[125.66807354, 68.41418321, 0, 0, 0, 0],
[68.41418321, 125.66807354, 0, 0, 0, 0],
[0, 0, 99.29916329, 0, 0, 0],
[0, 0, 0, 99.29916329, 0, 0],
[0, 0, 0, 0, 99.29916329, 0],
[0, 0, 0, 0, 0, 99.29916329]]),
atol=1e-4
)
) |
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.
Replace the ambiguous variable name
l
with a more descriptive name likeline
.Committable suggestion