Skip to content

Commit

Permalink
pyproject: quote python version in pyproject.toml
Browse files Browse the repository at this point in the history
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 aarond the python version.
  • Loading branch information
grondo committed Apr 1, 2024
1 parent 8a2b508 commit 3ecf139
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ skip = [
"src/bindings/python/flux/resource/__init__.py"]

[tool.mypy]
python_version = 3.6
python_version = "3.6"
files = ["src/cmd/**/*.py", "src/bindings/python/flux", "t/python/*.py"]
mypy_path = ["src/bindings/python", "t/python/tap", "t/python"]
allow_redefinition = true
Expand Down

0 comments on commit 3ecf139

Please sign in to comment.