From 4f7ee17b3d8febcf9aa789c0ef4715003af7d695 Mon Sep 17 00:00:00 2001 From: Morty Space Date: Thu, 30 Jul 2020 23:23:18 +0300 Subject: [PATCH] Fixed pytest requirement --- init.sh | 1 + setup.py | 3 +-- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/init.sh b/init.sh index e78317f..4cef471 100644 --- a/init.sh +++ b/init.sh @@ -5,4 +5,5 @@ python3 -m venv ./venv source activate.sh pip install --upgrade pip +pip install wheel pip install -e ".[dev]" diff --git a/setup.py b/setup.py index 41bd451..7177365 100644 --- a/setup.py +++ b/setup.py @@ -41,7 +41,7 @@ setup( 'dev': [ 'pylint', 'pycodestyle', - 'pytest', + 'pytest<6', 'pytest-asyncio', 'pytest-cov', 'pytest-env', @@ -51,7 +51,6 @@ setup( 'sphinx', 'sphinx_rtd_theme', 'setuptools', - 'wheel', 'twine', 'doc8' ]