From 7f7013b916b60dab4729eec0d9f2c319ce3aacc4 Mon Sep 17 00:00:00 2001 From: Hans-Joachim Krauch Date: Mon, 3 Oct 2022 13:55:44 -0300 Subject: [PATCH] Add `pyopenssl` to list of pip3 dependencies, fixes #515. Signed-off-by: Hans-Joachim Krauch --- dist/index.js | 1 + src/package_manager/pip.ts | 1 + 2 files changed, 2 insertions(+) diff --git a/dist/index.js b/dist/index.js index 59418b293..76836af30 100644 --- a/dist/index.js +++ b/dist/index.js @@ -8122,6 +8122,7 @@ const pip3Packages = [ "numpy", "pep8", "pydocstyle", + "pyopenssl", "pyparsing", "pytest", "pytest-cov", diff --git a/src/package_manager/pip.ts b/src/package_manager/pip.ts index 2bbab8652..548b5af49 100644 --- a/src/package_manager/pip.ts +++ b/src/package_manager/pip.ts @@ -48,6 +48,7 @@ const pip3Packages: string[] = [ "numpy", "pep8", "pydocstyle", + "pyopenssl", "pyparsing", "pytest", "pytest-cov",