Skip to content

Commit 385d943

Browse files
committed
Fixed formatting and added poetry installer to ignore list (formatting/pylint/...)
1 parent 9e52bd1 commit 385d943

File tree

2 files changed

+6
-2
lines changed

2 files changed

+6
-2
lines changed

exasol/toolbox/nox/_release.py

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -102,9 +102,12 @@ def run(*args: str):
102102
run("git", "tag", str(release_version))
103103
run("git", "push", "origin", str(release_version))
104104

105-
if hasattr(PROJECT_CONFIG, "create_major_version_tags") and PROJECT_CONFIG.create_major_version_tags:
105+
if (
106+
hasattr(PROJECT_CONFIG, "create_major_version_tags")
107+
and PROJECT_CONFIG.create_major_version_tags
108+
):
106109
major_release_version = f"v{release_version.major}"
107-
run("git", "tag", "-f", str(major_release_version))
110+
run("git", "tag", "-f", str(major_release_version))
108111
run("git", "push", "-f", "origin", str(major_release_version))
109112

110113
return release_version

noxconfig.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -50,6 +50,7 @@ class Config:
5050
"metrics-schema",
5151
"project-template",
5252
"idioms",
53+
".github/actions/python-environment/ext",
5354
)
5455
python_versions: Iterable[str] = ("3.9", "3.10", "3.11", "3.12", "3.13")
5556
exasol_versions: Iterable[str] = ("7.1.9",)

0 commit comments

Comments
 (0)