Skip to content

Commit

Permalink
Fix issue with python 3.12 builds
Browse files Browse the repository at this point in the history
  • Loading branch information
TimPansino committed Sep 17, 2024
1 parent c32b0cf commit a26866e
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
4 changes: 2 additions & 2 deletions src/python/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,8 @@ COPY download_wheels.py .
RUN python ./download_wheels.py

# Install sdist without extensions to set up the directory
ENV NEW_RELIC_EXTENSIONS False
ENV WRAPT_DISABLE_EXTENSIONS True
ENV NEW_RELIC_EXTENSIONS=False
ENV WRAPT_DISABLE_EXTENSIONS=True
RUN pip install ./workspace/newrelic.tar.gz --target=./workspace/newrelic && \
rm ./workspace/newrelic.tar.gz

Expand Down
3 changes: 2 additions & 1 deletion src/python/requirements-builder.txt
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
requests
setuptools>=40.8.0
setuptools>=40.8.0
wheel

0 comments on commit a26866e

Please sign in to comment.