From 18c849a7386934cc442526691359269e3c60515e Mon Sep 17 00:00:00 2001 From: Nicolas Patry Date: Tue, 29 Aug 2023 11:58:39 +0000 Subject: [PATCH] .. --- Makefile | 2 +- integration-tests/requirements.txt | 33 ++++++++++++++++++++++++++++++ 2 files changed, 34 insertions(+), 1 deletion(-) create mode 100644 integration-tests/requirements.txt diff --git a/Makefile b/Makefile index 29c6cee3..7f534c7c 100644 --- a/Makefile +++ b/Makefile @@ -5,7 +5,7 @@ install-custom-kernels: if [ "$$BUILD_EXTENSIONS" = "True" ]; then cd server/custom_kernels && python setup.py install; else echo "Custom kernels are disabled, you need to set the BUILD_EXTENSIONS environment variable to 'True' in order to build them. (Please read the docs, kernels might not work on all hardware)"; fi install-integration-tests: - cd integration-tests && pip install poetry && poetry install + cd integration-tests && pip install -r requirements.txt cd clients/python && pip install . install-router: diff --git a/integration-tests/requirements.txt b/integration-tests/requirements.txt new file mode 100644 index 00000000..3f779a90 --- /dev/null +++ b/integration-tests/requirements.txt @@ -0,0 +1,33 @@ +aiohttp==3.8.5 ; python_version >= "3.9" and python_version < "3.13" +aiosignal==1.3.1 ; python_version >= "3.9" and python_version < "3.13" +async-timeout==4.0.3 ; python_version >= "3.9" and python_version < "3.13" +attrs==23.1.0 ; python_version >= "3.9" and python_version < "3.13" +certifi==2023.7.22 ; python_version >= "3.9" and python_version < "3.13" +charset-normalizer==3.2.0 ; python_version >= "3.9" and python_version < "3.13" +colorama==0.4.6 ; python_version >= "3.9" and python_version < "3.13" and (sys_platform == "win32" or platform_system == "Windows") +colored==1.4.4 ; python_version >= "3.9" and python_version < "3.13" +docker==6.1.3 ; python_version >= "3.9" and python_version < "3.13" +exceptiongroup==1.1.3 ; python_version >= "3.9" and python_version < "3.11" +filelock==3.12.3 ; python_version >= "3.9" and python_version < "3.13" +frozenlist==1.4.0 ; python_version >= "3.9" and python_version < "3.13" +fsspec==2023.6.0 ; python_version >= "3.9" and python_version < "3.13" +huggingface-hub==0.16.4 ; python_version >= "3.9" and python_version < "3.13" +idna==3.4 ; python_version >= "3.9" and python_version < "3.13" +iniconfig==2.0.0 ; python_version >= "3.9" and python_version < "3.13" +multidict==6.0.4 ; python_version >= "3.9" and python_version < "3.13" +packaging==23.1 ; python_version >= "3.9" and python_version < "3.13" +pluggy==1.3.0 ; python_version >= "3.9" and python_version < "3.13" +pydantic==1.10.12 ; python_version >= "3.9" and python_version < "3.13" +pytest-asyncio==0.21.1 ; python_version >= "3.9" and python_version < "3.13" +pytest==7.4.0 ; python_version >= "3.9" and python_version < "3.13" +pywin32==306 ; python_version >= "3.9" and python_version < "3.13" and sys_platform == "win32" +pyyaml==6.0.1 ; python_version >= "3.9" and python_version < "3.13" +requests==2.31.0 ; python_version >= "3.9" and python_version < "3.13" +syrupy==4.0.1 ; python_version >= "3.9" and python_version < "3.13" +text-generation==0.6.0 ; python_version >= "3.9" and python_version < "3.13" +tomli==2.0.1 ; python_version >= "3.9" and python_version < "3.11" +tqdm==4.66.1 ; python_version >= "3.9" and python_version < "3.13" +typing-extensions==4.7.1 ; python_version >= "3.9" and python_version < "3.13" +urllib3==2.0.4 ; python_version >= "3.9" and python_version < "3.13" +websocket-client==1.6.2 ; python_version >= "3.9" and python_version < "3.13" +yarl==1.9.2 ; python_version >= "3.9" and python_version < "3.13"