Skip to content

Commit

Permalink
Update minimum Python version for pylint (#10318)
Browse files Browse the repository at this point in the history
This got missed during 4dfef13, and is needed to avoid Pylint
complaining about standard-library features that were added after the
minimum version it thinks we're on.
  • Loading branch information
jakelishman authored Jun 21, 2023
1 parent 57cd30f commit 924702e
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 @@ -49,7 +49,7 @@ extension-pkg-allow-list = [
"tweedledum",
]
load-plugins = ["pylint.extensions.docparams", "pylint.extensions.docstyle"]
py-version = "3.7" # update it when bumping minimum supported python version
py-version = "3.8" # update it when bumping minimum supported python version

[tool.pylint.basic]
good-names = ["a", "b", "i", "j", "k", "d", "n", "m", "ex", "v", "w", "x", "y", "z", "Run", "_", "logger", "q", "c", "r", "qr", "cr", "qc", "nd", "pi", "op", "b", "ar", "br", "p", "cp", "ax", "dt", "__unittest", "iSwapGate", "mu"]
Expand Down

0 comments on commit 924702e

Please sign in to comment.