Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 1 addition & 3 deletions _version.py
Original file line number Diff line number Diff line change
Expand Up @@ -90,9 +90,7 @@ def get_version_info_from_git() -> str:
"--first-parent",
]
try:
p = subprocess.run(
command, check=False, cwd=repo_dir, capture_output=True
)
p = subprocess.run(command, check=False, cwd=repo_dir, capture_output=True)
except Exception as e:
warning(f"Could not get {project_name} version: {e}")
p = None
Expand Down
3 changes: 0 additions & 3 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,3 @@
[tool.ruff]
line-length = 80

[tool.ruff.lint]
# Run all the rules, we turn some rules off in the file itself.
select = ["ALL"]
Expand Down