From 51a4d25ae3bf8b45760decf7dc130fa518f0598f Mon Sep 17 00:00:00 2001 From: Matthias Date: Tue, 6 Feb 2024 18:15:17 +0100 Subject: [PATCH] chore: Update ordering of requirements in setup.py --- setup.py | 22 +++++++++++----------- 1 file changed, 11 insertions(+), 11 deletions(-) diff --git a/setup.py b/setup.py index 64b30ed94..3b92b9dd7 100644 --- a/setup.py +++ b/setup.py @@ -35,21 +35,21 @@ hdf5 = [ develop = [ 'coveralls', + 'isort', 'mypy', - 'ruff', 'pre-commit', - 'pytest', 'pytest-asyncio', 'pytest-cov', 'pytest-mock', 'pytest-random-order', - 'isort', + 'pytest', + 'ruff', 'time-machine', 'types-cachetools', 'types-filelock', + 'types-python-dateutil' 'types-requests', 'types-tabulate', - 'types-python-dateutil' ] jupyter = [ @@ -76,8 +76,11 @@ setup( 'arrow>=1.0.0', 'cachetools', 'requests', + 'httpx>=0.24.1', 'urllib3', 'jsonschema', + 'numpy', + 'pandas', 'TA-Lib', 'pandas-ta', 'technical', @@ -86,29 +89,26 @@ setup( 'py_find_1st', 'python-rapidjson', 'orjson', - 'sdnotify', 'colorama', 'jinja2', 'questionary', 'prompt-toolkit', - 'numpy', - 'pandas', 'joblib>=1.2.0', 'rich', 'pyarrow; platform_machine != "armv7l"', 'fastapi', 'pydantic>=2.2.0', + 'pyjwt', + 'websockets', 'uvicorn', 'psutil', - 'pyjwt', - 'aiofiles', 'schedule', - 'websockets', 'janus', 'ast-comments', + 'aiofiles', 'aiohttp', 'cryptography', - 'httpx>=0.24.1', + 'sdnotify', 'python-dateutil', 'packaging', ],