diff --git a/.pylintrc b/.pylintrc new file mode 100644 index 0000000..a6cfae2 --- /dev/null +++ b/.pylintrc @@ -0,0 +1,8 @@ +[MASTER] +init-hook='import sys; sys.path.append("./src")' + +[MESSAGES CONTROL] +disable = C0114, C0103 + +[FORMAT] +max-line-length=100 diff --git a/pyproject.toml b/pyproject.toml index 8130833..515c168 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -69,12 +69,12 @@ filterwarnings = [ [tool.tox] legacy_tox_ini = """ [tox] -envlist = py39 +envlist = py310 isolated_build = true [gh-actions] python = - 3.9: py39 + 3.10: py310 [testenv:test] changedir = tests