Skip to content

Commit 0304022

Browse files
committed
pyproject: quote python version in pyproject.toml
Problem: mypy complains pyproject.toml: [mypy]: python_version: Python 3.6 is not supported (must be 3.8 or higher). You may need to put quotes around your Python version Put quotes around the python version.
1 parent 34db805 commit 0304022

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ skip = [
1010
"src/bindings/python/flux/resource/__init__.py"]
1111

1212
[tool.mypy]
13-
python_version = 3.6
13+
python_version = "3.6"
1414
files = ["src/cmd/**/*.py", "src/bindings/python/flux", "t/python/*.py"]
1515
mypy_path = ["src/bindings/python", "t/python/tap", "t/python"]
1616
allow_redefinition = true

0 commit comments

Comments
 (0)