Skip to content

Commit 45ca932

Browse files
committed
mesh-1761: build uses python 3.8.18
1 parent e2141bc commit 45ca932

3 files changed

Lines changed: 3 additions & 3 deletions

File tree

.tool-versions

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
python 3.10.12
1+
python 3.8.18

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -87,6 +87,6 @@ exclude = [
8787
]
8888
unfixable = []
8989
line-length = 120
90-
target-version = "py310"
90+
target-version = "py38"
9191

9292
[tool.ruff.per-file-ignores]

scripts/calculate_version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ def is_minor_inc(commit):
5353

5454
def without_empty(commits):
5555
"""Takes a list of commits and returns a list without empty commits"""
56-
pairs = zip(commits, commits[1:], strict=False) # noqa: RUF007
56+
pairs = zip(commits, commits[1:])
5757

5858
for fst, snd in pairs:
5959
if fst.tree != snd.tree:

0 commit comments

Comments
 (0)