Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
OpenDAS
dynamo
Commits
75afd7c4
"git@developer.sourcefind.cn:OpenDAS/openpcdet.git" did not exist on "8447a4754000cd9fb3018d8fd5b1c117bc5754b1"
Commit
75afd7c4
authored
Apr 10, 2025
by
mohammedabdulwahhab
Committed by
GitHub
Apr 10, 2025
Browse files
fix: wheel for api-store should not be built and installed (#584)
parent
044e12e1
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
4 deletions
+3
-4
container/Dockerfile.vllm
container/Dockerfile.vllm
+1
-4
pyproject.toml
pyproject.toml
+2
-0
No files found.
container/Dockerfile.vllm
View file @
75afd7c4
...
@@ -342,8 +342,6 @@ RUN source /opt/dynamo/venv/bin/activate && \
...
@@ -342,8 +342,6 @@ RUN source /opt/dynamo/venv/bin/activate && \
uv build --wheel --out-dir /workspace/dist --python 3.10; \
uv build --wheel --out-dir /workspace/dist --python 3.10; \
fi && \
fi && \
cd /workspace && \
cd /workspace && \
uv build --wheel --out-dir /workspace/dist && \
cd /workspace/deploy/dynamo/api-store && \
uv build --wheel --out-dir /workspace/dist
uv build --wheel --out-dir /workspace/dist
#######################################
#######################################
...
@@ -362,8 +360,7 @@ RUN mkdir -p /opt/dynamo/bindings/wheels && \
...
@@ -362,8 +360,7 @@ RUN mkdir -p /opt/dynamo/bindings/wheels && \
cp -r lib/bindings/c/include /opt/dynamo/bindings/.
cp -r lib/bindings/c/include /opt/dynamo/bindings/.
RUN uv pip install /workspace/dist/ai_dynamo_runtime*cp312*.whl && \
RUN uv pip install /workspace/dist/ai_dynamo_runtime*cp312*.whl && \
uv pip install /workspace/dist/ai_dynamo*any.whl && \
uv pip install /workspace/dist/ai_dynamo*any.whl
uv pip install /workspace/dist/ai_dynamo_store*any.whl
##########################################
##########################################
########## Perf Analyzer Image ###########
########## Perf Analyzer Image ###########
...
...
pyproject.toml
View file @
75afd7c4
...
@@ -122,6 +122,7 @@ tmp_path_retention_policy = "failed"
...
@@ -122,6 +122,7 @@ tmp_path_retention_policy = "failed"
# NOTE
# NOTE
# We ignore model.py explcitly here to avoid mypy errors with duplicate modules
# We ignore model.py explcitly here to avoid mypy errors with duplicate modules
# pytest overrides the default mypy exclude configuration and so we exclude here as well
# pytest overrides the default mypy exclude configuration and so we exclude here as well
# Ignore mypy check for api-store component from Dynamo Deploy. Mypy analysis will fail since this package (and its dependencies) are not installed.
addopts
=
[
addopts
=
[
"-ra"
,
"-ra"
,
"--showlocals"
,
"--showlocals"
,
...
@@ -130,6 +131,7 @@ addopts = [
...
@@ -130,6 +131,7 @@ addopts = [
"--mypy"
,
"--mypy"
,
"--ignore-glob=*model.py"
,
"--ignore-glob=*model.py"
,
"--ignore-glob=*_inc.py"
,
"--ignore-glob=*_inc.py"
,
"--ignore-glob=deploy/dynamo/api-store/*"
,
# FIXME: Get relative/generic blob paths to work here
# FIXME: Get relative/generic blob paths to work here
]
]
xfail_strict
=
true
xfail_strict
=
true
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment