From 4d299a553177175eedfa65e42580ea97627be2d7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rub=C3=A9n=20Dur=C3=A1n=20Balda?= Date: Thu, 29 Aug 2019 07:59:18 +0200 Subject: [PATCH] Fix tests (work in progress) (#796) * Add pyOpenSSL to dev requirements to fix tests on py2 * Add pyOpenSSL to the install requires * Remove pyOpenSSL from install_requires --- requirements-dev.txt | 3 ++- setup.py | 2 +- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/requirements-dev.txt b/requirements-dev.txt index e0ccd39c..66b9e011 100644 --- a/requirements-dev.txt +++ b/requirements-dev.txt @@ -6,4 +6,5 @@ pytest-httpbin>=0.0.6 docutils wheel pycodestyle -twine +pyOpenSSL +twine \ No newline at end of file diff --git a/setup.py b/setup.py index 3cb04c8b..7103569d 100644 --- a/setup.py +++ b/setup.py @@ -36,7 +36,7 @@ tests_require = [ install_requires = [ 'requests>=2.21.0', - 'Pygments>=2.3.1' + 'Pygments>=2.3.1', ]