Skip to content

Commit a51cdcc

Browse files
authored
Added shellcheck dependency (#1320)
Added shellcheck-py as a development dependency as it is used in `check/shellcheck` and the optional pre-commit hooks.
1 parent 0c5b3bd commit a51cdcc

4 files changed

Lines changed: 15 additions & 1 deletion

File tree

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
shellcheck-py~=0.11.0

dev_tools/requirements/envs/dev.env.txt

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
# This file is autogenerated by pip-compile with Python 3.10
33
# by the following command:
44
#
5-
# pip-compile --output-file=envs/dev.env.txt deps/format.txt deps/mypy.txt deps/pip-tools.txt deps/pylint.txt deps/pytest.txt deps/resource_estimates_runtime.txt deps/runtime.txt
5+
# pip-compile --output-file=envs/dev.env.txt deps/format.txt deps/mypy.txt deps/pip-tools.txt deps/pylint.txt deps/pytest.txt deps/resource_estimates_runtime.txt deps/runtime.txt deps/shellcheck.txt
66
#
77
ase==3.28.0
88
# via -r deps/resource_estimates_runtime.txt
@@ -210,6 +210,8 @@ scipy==1.15.3
210210
# jax
211211
# jaxlib
212212
# pyscf
213+
shellcheck-py==0.11.0.1
214+
# via -r deps/shellcheck.txt
213215
six==1.17.0
214216
# via python-dateutil
215217
sortedcontainers==2.4.0
Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
#
2+
# This file is autogenerated by pip-compile with Python 3.10
3+
# by the following command:
4+
#
5+
# pip-compile --constraint=envs/dev.env.txt --output-file=envs/shellcheck.env.txt deps/shellcheck.txt
6+
#
7+
shellcheck-py==0.11.0.1
8+
# via
9+
# -c envs/dev.env.txt
10+
# -r deps/shellcheck.txt

dev_tools/requirements/run-pip-compiles.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -68,6 +68,7 @@ class PlatformRecipe:
6868
"pytest-extra": EnvRecipe({"runtime", "resource_estimates_runtime", "pytest"}),
6969
"mypy": EnvRecipe({"runtime", "mypy"}),
7070
"pip-tools": EnvRecipe({"pip-tools"}),
71+
"shellcheck": EnvRecipe({"shellcheck"}),
7172
}
7273
),
7374
# The following is intended to be run on an older version of python and

0 commit comments

Comments
 (0)