Skip to content

Commit f8c5063

Browse files
authored
Fix psutil dockerfile version constraint (#328)
1 parent bea712c commit f8c5063

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

CHANGELOG.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,8 @@
1111

1212
- Fixes:
1313
- Fix unexpected 'No active span' IllegalStateError (#311)
14-
14+
- **Tentative**: Set upper bound <=5.9.5 for psutil package due to test failure. (#326)
15+
1516
### 1.0.1
1617

1718
- Feature:

docker/Dockerfile

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,8 @@ RUN pip install --upgrade pip
2323
RUN pip install poetry
2424
COPY ./ /tmp/
2525
RUN make -C /tmp package
26-
RUN pip wheel psutil -w /tmp/dist/
26+
# This is a temporary workaround, see #11481
27+
RUN pip wheel "psutil<=5.9.5" -w /tmp/dist/
2728

2829
FROM base AS final
2930
COPY --from=builder /tmp/dist/*.whl /tmp/

0 commit comments

Comments
 (0)