We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bea712c commit f8c5063Copy full SHA for f8c5063
CHANGELOG.md
@@ -11,7 +11,8 @@
11
12
- Fixes:
13
- Fix unexpected 'No active span' IllegalStateError (#311)
14
-
+ - **Tentative**: Set upper bound <=5.9.5 for psutil package due to test failure. (#326)
15
+
16
### 1.0.1
17
18
- Feature:
docker/Dockerfile
@@ -23,7 +23,8 @@ RUN pip install --upgrade pip
23
RUN pip install poetry
24
COPY ./ /tmp/
25
RUN make -C /tmp package
26
-RUN pip wheel psutil -w /tmp/dist/
+# This is a temporary workaround, see #11481
27
+RUN pip wheel "psutil<=5.9.5" -w /tmp/dist/
28
29
FROM base AS final
30
COPY --from=builder /tmp/dist/*.whl /tmp/
0 commit comments