Skip to content

Commit 903d7c5

Browse files
committed
Use latest release to dd-trace-py
1 parent 281e791 commit 903d7c5

File tree

4 files changed

+3
-4
lines changed

4 files changed

+3
-4
lines changed

Dockerfile

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,6 @@ WORKDIR /build
1010
# Install datadog_lambda and dependencies from local
1111
COPY . .
1212
RUN pip install . -t ./python/lib/$runtime/site-packages
13-
RUN pip install --find-links=https://s3.amazonaws.com/pypi.datadoghq.com/trace-dev/index.html ddtrace==0.35.1.dev5+g1e11b2dd -t ./python/lib/$runtime/site-packages
1413

1514
# Remove *.pyc files
1615
RUN find ./python/lib/$runtime/site-packages -name \*.pyc -delete

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -271,7 +271,7 @@ def lambda_handler(event, context):
271271

272272
You can now trace Lambda functions using Datadog APM's tracing libraries ([dd-trace-py](https://github.com/DataDog/dd-trace-py)).
273273

274-
1. If you are using the Lambda layer, upgrade it to at least version X.
274+
1. If you are using the Lambda layer, upgrade it to at least version 15.
275275
1. If you are using the pip package `datadog-lambda-python`, upgrade it to at least version `v0.X.0`.
276276
1. Install (or update to) the latest version of [Datadog forwarder Lambda function](https://docs.datadoghq.com/integrations/amazon_web_services/?tab=allpermissions#set-up-the-datadog-lambda-function). Ensure the trace forwarding layer is attached to the forwarder, e.g., ARN for Python 2.7 `arn:aws:lambda:<AWS_REGION>:464622532012:layer:Datadog-Trace-Forwarder-Python27:4`.
277277
1. Set the environment variable `DD_TRACE_ENABLED` to true on your function.

datadog_lambda/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# The minor version corresponds to the Lambda layer version.
22
# E.g.,, version 0.5.0 gets packaged into layer version 5.
3-
__version__ = "2.14.0"
3+
__version__ = "2.15.0"
44

55

66
import os

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@
3030
install_requires=[
3131
"aws-xray-sdk==2.4.3",
3232
"datadog==0.32.0",
33-
"ddtrace==0.31.0",
33+
"ddtrace==0.36.0",
3434
"wrapt==1.11.2",
3535
"setuptools==42.0.2",
3636
],

0 commit comments

Comments
 (0)