Skip to content

Commit 1aedb03

Browse files
committed
type(chore) Update dependencies to latest version
1 parent 428e307 commit 1aedb03

File tree

2 files changed

+16
-9
lines changed

2 files changed

+16
-9
lines changed

README.md

Lines changed: 9 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,11 @@
22

33
[![CircleCI](https://img.shields.io/circleci/build/github/DataDog/datadog-lambda-layer-python)](https://circleci.com/gh/DataDog/datadog-lambda-layer-python)
44
[![PyPI](https://img.shields.io/pypi/v/datadog-lambda)](https://pypi.org/project/datadog-lambda/)
5+
![PyPI - Python Version](https://img.shields.io/pypi/pyversions/datadog-lambda)
56
[![Slack](https://img.shields.io/badge/slack-%23serverless-blueviolet?logo=slack)](https://datadoghq.slack.com/channels/serverless/)
67
[![License](https://img.shields.io/badge/license-Apache--2.0-blue)](https://github.com/DataDog/datadog-lambda-layer-python/blob/master/LICENSE)
78

8-
Datadog Lambda Layer for Python (2.7, 3.6 and 3.7) enables custom metric submission from AWS Lambda functions, and distributed tracing between serverful and serverless environments.
9+
Datadog Lambda Layer for Python (2.7, 3.6, 3.7 and 3.8) enables custom metric submission from AWS Lambda functions, and distributed tracing between serverful and serverless environments.
910

1011
## Installation
1112

@@ -15,7 +16,13 @@ Datadog Lambda Layer can be added to a Lambda function via AWS Lambda console, [
1516
arn:aws:lambda:<AWS_REGION>:464622532012:layer:Datadog-<PYTHON_RUNTIME>:<VERSION>
1617
```
1718

18-
Replace `<AWS_REGION>` with the AWS region where your Lambda function is published to. Replace `<PYTHON_RUNTIME>` with `Datadog-Python27` with `Datadog-Python36` or `Datadog-Python37` that matches your Lambda's Python runtime. Replace `<VERSION>` with the latest layer version that can be found from [CHANGELOG](CHANGELOG.md). For example,
19+
Replace `<AWS_REGION>` with the AWS region where your Lambda function is published to. Replace `<PYTHON_RUNTIME>` with one of the following that matches your Lambda's Python runtime:
20+
- `Datadog-Python27`
21+
- `Datadog-Python36`
22+
- `Datadog-Python37`
23+
- `Datadog-Python38`
24+
25+
Replace `<VERSION>` with the latest layer version that can be found from [CHANGELOG](CHANGELOG.md). For example,
1926

2027
```
2128
arn:aws:lambda:us-east-1:464622532012:layer:Datadog-Python37:1

setup.py

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -28,18 +28,18 @@
2828
packages=['datadog_lambda'],
2929
python_requires='>=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*, !=3.5.*, <4',
3030
install_requires=[
31-
'aws-xray-sdk==2.4.2',
31+
'aws-xray-sdk==2.4.3',
3232
'datadog==0.32.0',
33-
'ddtrace==0.30.2',
34-
'wrapt==1.11.1',
35-
'setuptools==41.6.0',
33+
'ddtrace==0.31.0',
34+
'wrapt==1.11.2',
35+
'setuptools==42.0.2',
3636
],
3737
extras_require={
3838
'dev': [
3939
'nose2==0.9.1',
40-
'flake8==3.7.7',
41-
'requests==2.21.0',
42-
'boto3==1.10.17',
40+
'flake8==3.7.9',
41+
'requests==2.22.0',
42+
'boto3==1.10.33',
4343
]
4444
}
4545
)

0 commit comments

Comments
 (0)