diff --git a/pyproject.toml b/pyproject.toml index 3a42e376..596a2787 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -15,7 +15,7 @@ packages = [ ] [tool.poetry.dependencies] -python = ">=3.8,<3.11" +python = ">=3.8,<3.12" # Used for local development nautobot = { version = ">=1.5.0", optional = true } @@ -76,12 +76,12 @@ exclude = ''' [tool.pylint.master] # Include the pylint_django plugin to avoid spurious warnings about Django patterns -load-plugins="pylint_django" -ignore=".venv" +load-plugins = "pylint_django" +ignore = ".venv" [tool.pylint.basic] # No docstrings required for private methods (Pylint default), or for test_ functions, or for inner Meta classes. -no-docstring-rgx="^(_|test_|Test|Meta$)" +no-docstring-rgx = "^(_|test_|Test|Meta$)" [tool.pylint.messages_control] # Line length is enforced by Black, so pylint doesn't need to check it. @@ -118,7 +118,5 @@ requires = ["poetry_core>=1.0.0"] build-backend = "poetry.core.masonry.api" [tool.pytest.ini_options] -testpaths = [ - "tests" -] +testpaths = ["tests"] addopts = "-vv --doctest-modules"