From c61d85e42717802e10dfc6032c040358142c8017 Mon Sep 17 00:00:00 2001 From: Marcel Wilson Date: Thu, 6 Jun 2024 17:09:13 -0500 Subject: [PATCH 1/5] adding pylint to requirements-dev.txt --- requirements-dev.txt | 1 + 1 file changed, 1 insertion(+) diff --git a/requirements-dev.txt b/requirements-dev.txt index bfa746dc6..ed47e5e86 100644 --- a/requirements-dev.txt +++ b/requirements-dev.txt @@ -10,6 +10,7 @@ coverage codecov # used for example confluence attach file python-magic +pylint # On October 4, 2022 importlib-metadata released importlib-metadata 5.0.0 and in version 5.0.0 # They have Deprecated EntryPoints and that's why you are facing this error. From 797b9789f0c975d7d470c2f3dac07e3901e1ea3b Mon Sep 17 00:00:00 2001 From: Marcel Wilson Date: Thu, 6 Jun 2024 17:10:08 -0500 Subject: [PATCH 2/5] fixing package name references --- requirements.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/requirements.txt b/requirements.txt index 4c2340220..0092d3d55 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,8 +1,8 @@ -deprecated +Deprecated requests>=2.8.1 six oauthlib -requests_oauthlib +requests-oauthlib requests-kerberos==0.14.0 # Add this package to search string in json jmespath From 5597d23a1159aac90c92e8b9115f3b6413bd5562 Mon Sep 17 00:00:00 2001 From: Marcel Wilson Date: Thu, 6 Jun 2024 17:28:45 -0500 Subject: [PATCH 3/5] removing invalid black configuration --- pyproject.toml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 50fd690f9..26ed17880 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -7,7 +7,6 @@ [tool.black] target-version = ['py36', 'py37', 'py38', 'py39'] line-length = 120 -include_trailing_comma = false include = '(atlassian|examples|tests)\/.*(\.py|GET|POST)' [tool.pylint.format] @@ -617,4 +616,4 @@ min-public-methods = 2 # "BaseException, Exception". overgeneral-exceptions = '''BaseException, Exception -''' \ No newline at end of file +''' From dae37ae6820ae3313570b97d891ef35b1775f59a Mon Sep 17 00:00:00 2001 From: Marcel Wilson Date: Thu, 6 Jun 2024 17:35:43 -0500 Subject: [PATCH 4/5] adding mypy to requirements-dev.txt --- requirements-dev.txt | 1 + 1 file changed, 1 insertion(+) diff --git a/requirements-dev.txt b/requirements-dev.txt index ed47e5e86..2a77a9997 100644 --- a/requirements-dev.txt +++ b/requirements-dev.txt @@ -11,6 +11,7 @@ codecov # used for example confluence attach file python-magic pylint +mypy # On October 4, 2022 importlib-metadata released importlib-metadata 5.0.0 and in version 5.0.0 # They have Deprecated EntryPoints and that's why you are facing this error. From c601f82f0bda7f870901c9222b7f8e80a1fe6db7 Mon Sep 17 00:00:00 2001 From: Marcel Wilson Date: Thu, 6 Jun 2024 17:37:22 -0500 Subject: [PATCH 5/5] adding bandit & doc8 to requirements-dev.txt --- requirements-dev.txt | 2 ++ 1 file changed, 2 insertions(+) diff --git a/requirements-dev.txt b/requirements-dev.txt index 2a77a9997..9a22795a1 100644 --- a/requirements-dev.txt +++ b/requirements-dev.txt @@ -12,6 +12,8 @@ codecov python-magic pylint mypy +bandit +doc8 # On October 4, 2022 importlib-metadata released importlib-metadata 5.0.0 and in version 5.0.0 # They have Deprecated EntryPoints and that's why you are facing this error.