Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[V2 Pipeline] SImple Asyncio pipeline test #1478

Open
wants to merge 16 commits into
base: main
Choose a base branch
from
1 change: 0 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,6 @@ def _parse_requirements_file(file_path):
"flask>=1.0.0",
"flask-cors>=3.0.0",
"Pillow>=8.3.2",
"pytest-asyncio==0.23.2",
horheynm marked this conversation as resolved.
Show resolved Hide resolved
]
_docs_deps = [
"m2r2~=0.2.7",
Expand Down
2 changes: 1 addition & 1 deletion tests/deepsparse/pipelines/test_basic_pipeline.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
from deepsparse.operators import Operator
from deepsparse.routers import LinearRouter
from deepsparse.schedulers import OperatorScheduler
from deepsparse.utils import InferenceState
from deepsparse.utils.state import InferenceState


class IntSchema(BaseModel):
Expand Down
Loading