Skip to content

Commit ac375b3

Browse files
authored
chore(isort): Ignore _version.py (#1865)
1 parent 0399bbd commit ac375b3

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -117,7 +117,7 @@ dev = [
117117
"google-generativeai;python_version>='3.9'",
118118
"langchain_core",
119119
# langsmith (needed for langchain_core) versions >= 0.3
120-
# (up to at least 0.3.2 as of 2025-01-29)
120+
# (up to at least 0.3.2 as of 2025-01-29)
121121
# cause an `argparse.ArgumentError` when running `pytest`.
122122
# https://github.com/posit-dev/py-shiny/issues/1829
123123
"langsmith<0.3",
@@ -158,7 +158,7 @@ ignore = ["E302", "E501", "F403", "F405", "W503", "E203", "E701", "E704"]
158158

159159
[tool.isort]
160160
profile = "black"
161-
skip = ["__init__.py", "typings/", "_dev/", ".venv", "venv", ".tox", "build"]
161+
skip = ["__init__.py", "typings/", "_dev/", ".venv", "venv", ".tox", "build", "_version.py"]
162162

163163
[tool.mypy]
164164
# The goal of our usage of mypy is to make to sure mypy can run, not that it catches any errors (we use pyright to find our errors).

0 commit comments

Comments
 (0)