From f0f6210c3e544ccaff34f7a8c41bbe3a2734512f Mon Sep 17 00:00:00 2001 From: Miron Moderau Date: Wed, 8 Sep 2021 15:33:18 +0200 Subject: [PATCH] Split requirements-dev.txt from requirements.txt All pytest and types requirements are moved. Also, the pip bug comment is made more explanatory. --- requirements-dev.txt | 7 +++++++ requirements.txt | 10 +++------- 2 files changed, 10 insertions(+), 7 deletions(-) create mode 100644 requirements-dev.txt diff --git a/requirements-dev.txt b/requirements-dev.txt new file mode 100644 index 0000000..018ae17 --- /dev/null +++ b/requirements-dev.txt @@ -0,0 +1,7 @@ +-r requirements.txt +pytest==5.2.2 +pytest-asyncio==0.10.0 +pytest-mock==1.10.3 +pytest-mypy==0.4.1 +pytest-flakes==4.0.0 +types-certifi==2020.4.0 diff --git a/requirements.txt b/requirements.txt index c536c16..d82a81f 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,11 +1,7 @@ -e . -pytest==5.2.2 -pytest-asyncio==0.10.0 -pytest-mock==1.10.3 -pytest-mypy==0.4.1 -pytest-flakes==4.0.0 -# because of pip bug https://github.com/pypa/pip/issues/4780 +# Copied from setup.py because of a pip bug +# see https://github.com/pypa/pip/issues/4780 aiohttp==3.5.4 certifi==2019.3.9 -types-certifi==2020.4.0 psutil==5.6.6; sys_platform == 'darwin' +# End of copy from setup.py