Skip to content

Commit

Permalink
Merge pull request #81 from grafana/pin-python
Browse files Browse the repository at this point in the history
pin python version as latest release is broken
  • Loading branch information
zeitlinger authored Aug 1, 2024
2 parents 01545a0 + c8e1df7 commit bd31bf8
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion examples/python/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ COPY requirements.txt .
# 2. Run `pip freeze > requirements.txt` in the same directory as your app.py file
RUN pip install -r requirements.txt

RUN pip install opentelemetry-distro[otlp]
RUN pip install 'opentelemetry-distro[otlp]==0.46b0'
RUN opentelemetry-bootstrap -a install

COPY app.py .
Expand Down
2 changes: 1 addition & 1 deletion examples/python/run.sh
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ source ./venv/bin/activate
pip install -r requirements.txt

# Step 1: Install the OpenTelemetry SDK
pip install opentelemetry-distro[otlp]
pip install 'opentelemetry-distro[otlp]==0.46b0'
opentelemetry-bootstrap -a install

# Step 2: Run the application
Expand Down

0 comments on commit bd31bf8

Please sign in to comment.