Skip to content

Commit

Permalink
[pre-commit.ci] auto fixes from pre-commit.com hooks
Browse files Browse the repository at this point in the history
for more information, see https://pre-commit.ci
  • Loading branch information
pre-commit-ci[bot] committed Jan 4, 2025
1 parent fa5a646 commit ab63cc5
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion build_backend/dp_backend.py
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,10 @@ def __dir__() -> list[str]:


def cibuildwheel_dependencies() -> list[str]:
if os.environ.get("CIBUILDWHEEL", "0") == "1" or os.environ.get("READTHEDOCS", "0") == "1":
if (
os.environ.get("CIBUILDWHEEL", "0") == "1"
or os.environ.get("READTHEDOCS", "0") == "1"
):
return [
"deepmd-kit[torch]>=3.0.0b2",
]
Expand Down

0 comments on commit ab63cc5

Please sign in to comment.