Skip to content

Commit aa132d9

Browse files
committed
update bibtex citation author list
bump ruff + auto fixes
1 parent 4d3091e commit aa132d9

File tree

16 files changed

+8
-21
lines changed

16 files changed

+8
-21
lines changed

.pre-commit-config.yaml

+5-5
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ default_install_hook_types: [pre-commit, commit-msg]
77

88
repos:
99
- repo: https://github.com/astral-sh/ruff-pre-commit
10-
rev: v0.3.0
10+
rev: v0.3.2
1111
hooks:
1212
- id: ruff
1313
args: [--fix]
@@ -16,13 +16,13 @@ repos:
1616
types_or: [python, jupyter]
1717

1818
- repo: https://github.com/pre-commit/mirrors-mypy
19-
rev: v1.8.0
19+
rev: v1.9.0
2020
hooks:
2121
- id: mypy
2222
additional_dependencies: [types-requests]
2323

2424
- repo: https://github.com/janosh/format-ipy-cells
25-
rev: v0.1.10
25+
rev: v0.1.11
2626
hooks:
2727
- id: format-ipy-cells
2828

@@ -72,7 +72,7 @@ repos:
7272
exclude: ^(site/src/figs/.+\.svelte|data/wbm/20.+\..+|site/src/(routes|figs).+\.(yaml|json)|changelog.md)$
7373

7474
- repo: https://github.com/pre-commit/mirrors-eslint
75-
rev: v9.0.0-beta.1
75+
rev: v9.0.0-beta.2
7676
hooks:
7777
- id: eslint
7878
types: [file]
@@ -88,6 +88,6 @@ repos:
8888
- svelte-eslint-parser
8989

9090
- repo: https://github.com/RobertCraigie/pyright-python
91-
rev: v1.1.352
91+
rev: v1.1.353
9292
hooks:
9393
- id: pyright

citation.cff

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,5 +21,5 @@ repository-code: https://github.com/janosh/pymatviz
2121
type: software
2222
url: https://github.com/janosh/pymatviz
2323
doi: 10.5281/zenodo.7486816
24-
version: 0.5.1 # replace with whatever version you use
24+
version: 0.8.1 # replace with whatever version you use
2525
date-released: 2022-10-08

examples/dataset_exploration/boltztrap_mp/explore_boltztrap_mp.py

-1
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,6 @@
2626
https://hackingmaterials.lbl.gov/matminer/dataset_summary.html
2727
"""
2828

29-
3029
# %%
3130
import matplotlib.pyplot as plt
3231
from matminer.datasets import load_dataset

examples/dataset_exploration/camd_2022/explore_camd_2022.py

-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,6 @@
1313
campaigns by chemical system.
1414
"""
1515

16-
1716
# %%
1817
import os
1918

examples/dataset_exploration/matbench/dielectric/explore_dielectric.py

-1
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,6 @@
2929
https://ml.materialsproject.org/projects/matbench_dielectric
3030
"""
3131

32-
3332
# %%
3433
df_diel = load_dataset("matbench_dielectric")
3534

examples/dataset_exploration/matbench/expt_gap/explore_expt_gap.py

-1
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,6 @@
3232
https://ml.materialsproject.org/projects/matbench_expt_gap
3333
"""
3434

35-
3635
# %%
3736
df_gap = load_dataset("matbench_expt_gap")
3837

examples/dataset_exploration/matbench/jdft2d/explore_jdft2d.py

-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,6 @@
1919
https://ml.materialsproject.org/projects/matbench_jdft2d
2020
"""
2121

22-
2322
# %%
2423
df_2d = load_dataset("matbench_jdft2d")
2524

examples/dataset_exploration/matbench/log_g+kvrh/explore_log_g+krvh.py

-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,6 @@
99
https://ml.materialsproject.org/projects/matbench_log_kvrh
1010
"""
1111

12-
1312
# %%
1413
from time import perf_counter
1514

examples/dataset_exploration/matbench/mp_e_form/explore_mp_e_form.py

-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,6 @@
1818
https://ml.materialsproject.org/projects/matbench_mp_e_form
1919
"""
2020

21-
2221
# %%
2322
df_e_form = load_dataset("matbench_mp_e_form")
2423

examples/dataset_exploration/matbench/mp_gap/explore_mp_gap.py

-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,6 @@
1515
https://ml.materialsproject.org/projects/matbench_mp_gap
1616
"""
1717

18-
1918
# %%
2019
df_gap = load_dataset("matbench_mp_gap")
2120

examples/dataset_exploration/matbench/perovskites/explore_perovskites.py

-1
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,6 @@
2727
https://ml.materialsproject.org/projects/matbench_perovskites
2828
"""
2929

30-
3130
# %%
3231
df_perov = load_dataset("matbench_perovskites")
3332

examples/dataset_exploration/matbench/phonons/explore_phonons.py

-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,6 @@
1515
https://ml.materialsproject.org/projects/matbench_phonons
1616
"""
1717

18-
1918
# %%
2019
import matplotlib.pyplot as plt
2120
from matminer.datasets import load_dataset

examples/dataset_exploration/matbench/steels/explore_steels.py

-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,6 @@
77
https://ml.materialsproject.org/projects/matbench_steels
88
"""
99

10-
1110
# %%
1211
import matplotlib.pyplot as plt
1312
from matminer.datasets import load_dataset

examples/dataset_exploration/ricci_carrier_transport/convert_dtype+add_strucs.py

-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,6 @@
88
Unprocessed data in data/carrier_transport.json.gz obtained from https://git.io/JOMwY.
99
"""
1010

11-
1211
# %%
1312
df_carrier = load_dataset("ricci_boltztrap_mp_tabular")
1413

examples/dataset_exploration/ricci_carrier_transport/explore_carrier_transport.py

-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,6 @@
1717
https://hackingmaterials.lbl.gov/matminer/dataset_summary.html#ricci-boltztrap-mp-tabular.
1818
"""
1919

20-
2120
# %%
2221
import matplotlib.pyplot as plt
2322
from matminer.datasets import load_dataset

readme.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -209,13 +209,13 @@ See [`citation.cff`](citation.cff) or cite the [Zenodo record](https://zenodo.or
209209
```bib
210210
@software{riebesell_pymatviz_2022,
211211
title = {Pymatviz: visualization toolkit for materials informatics},
212-
author = {Riebesell, Janosh},
212+
author = {Riebesell, Janosh and Goodall, Rhys and Baird, Sterling G.},
213213
date = {2022-10-01},
214214
year = {2022},
215215
doi = {10.5281/zenodo.7486816},
216216
url = {https://github.com/janosh/pymatviz},
217217
note = {10.5281/zenodo.7486816 - https://github.com/janosh/pymatviz},
218218
urldate = {2023-01-01}, % optional, replace with your date of access
219-
version = {0.7.1}, % replace with the version you use
219+
version = {0.8.1}, % replace with the version you use
220220
}
221221
```

0 commit comments

Comments
 (0)