From a535926d4d19c0b91eaebe3cea0a137854b875e0 Mon Sep 17 00:00:00 2001 From: Alexander Condello Date: Tue, 8 Jun 2021 09:45:33 -0700 Subject: [PATCH] Allow 100 character line length Now that we're starting to use python's typing module, 80 chars is becoming increasingly restrictive. This commit signals that dimod support 100 characters by adding it to the setup.cfg. Ideally we would like to add it to the pyproject.toml, but right now that's not supported. See https://github.com/PyCQA/pycodestyle/issues/813 --- setup.cfg | 3 +++ 1 file changed, 3 insertions(+) diff --git a/setup.cfg b/setup.cfg index b6e1e2827..83abe7a35 100644 --- a/setup.cfg +++ b/setup.cfg @@ -39,3 +39,6 @@ packages = dimod.views python_requires = >=3.6 zip_safe = False + +[pycodestyle] +max-line-length = 100