Merge pull request #654 from mendableai/fix/issue-644

fix(py-sdk): removed asyncio package
This commit is contained in:
Nicolas 2024-09-10 10:27:24 -03:00 committed by GitHub
commit 93b7b313d6
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
3 changed files with 1 additions and 4 deletions

View File

@ -13,7 +13,6 @@ import logging
import os import os
import time import time
from typing import Any, Dict, Optional, List from typing import Any, Dict, Optional, List
import asyncio
import json import json
import requests import requests

View File

@ -12,8 +12,7 @@ dependencies = [
"requests", "requests",
"python-dotenv", "python-dotenv",
"websockets", "websockets",
"asyncio", "nest-asyncio"
"nest-asyncio"
] ]
authors = [{name = "Mendable.ai",email = "nick@mendable.ai"}] authors = [{name = "Mendable.ai",email = "nick@mendable.ai"}]
maintainers = [{name = "Mendable.ai",email = "nick@mendable.ai"}] maintainers = [{name = "Mendable.ai",email = "nick@mendable.ai"}]

View File

@ -2,5 +2,4 @@ requests
pytest pytest
python-dotenv python-dotenv
websockets websockets
asyncio
nest-asyncio nest-asyncio