Skip to content

Commit 1e76bdf

Browse files
committed
improve compatibility to python 3.8-3.10
1 parent bad6cff commit 1e76bdf

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ exclude = [
1414
]
1515
include = ["bioimageio", "scripts", "tests"]
1616
pythonPlatform = "All"
17-
pythonVersion = "3.12"
17+
pythonVersion = "3.8"
1818
reportDuplicateImport = "error"
1919
reportImplicitStringConcatenation = "error"
2020
reportImportCycles = true
@@ -48,7 +48,7 @@ testpaths = ["bioimageio/spec", "tests"]
4848

4949
[tool.ruff]
5050
line-length = 88
51-
target-version = "py312"
51+
target-version = "py38"
5252
exclude = [
5353
"bioimageio_cache",
5454
"scripts/pdoc/original.py",

setup.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -47,6 +47,7 @@
4747
"tifffile>=2020.7.4",
4848
"tqdm",
4949
"typing-extensions",
50+
"exceptiongroup", # TODO: remove when py3.11 is lowest supported version
5051
"zipp",
5152
],
5253
extras_require={

0 commit comments

Comments
 (0)