-
Notifications
You must be signed in to change notification settings - Fork 387
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[AWSX-537] Support python version 3.10 #719
Changes from all commits
f2aaad8
5fbeff9
9920d94
de7d4bb
adb1b50
9427b35
9db34c5
423e358
d6c4663
b7a1e2c
33305cd
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -8,7 +8,7 @@ jobs: | |
strategy: | ||
max-parallel: 4 | ||
matrix: | ||
python-version: [3.8, 3.9] | ||
python-version: ['3.9', '3.10'] | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Same question, why do we use quotes now ? There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. see actions/runner#1989, same for the above |
||
steps: | ||
- name: Checkout source | ||
uses: actions/checkout@v3 | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -12,12 +12,15 @@ | |
author="Datadog, Inc.", | ||
author_email="[email protected]", | ||
classifiers=[ | ||
"Programming Language :: Python :: 3.8", | ||
"Programming Language :: Python :: 3.9", | ||
"Programming Language :: Python :: 3.10", | ||
], | ||
keywords="datadog aws lambda layer", | ||
python_requires=">=3.7, <3.10", | ||
install_requires=["datadog-lambda==3.39.0", "requests-futures==1.0.0"], | ||
python_requires=">=3.9, <3.11", | ||
install_requires=[ | ||
"datadog-lambda==4.77.0", | ||
"requests-futures==1.0.0", | ||
], | ||
extras_require={ | ||
"dev": ["nose2==0.9.1", "flake8==3.7.9", "requests==2.22.0", "boto3==1.10.33"] | ||
}, | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -19,4 +19,3 @@ RUN rm -rf ./botocore* | |
# like `os.execl`, which cause security scans to fail for certain customers. | ||
# These files are not directly used by the Forwarder. | ||
RUN rm ./ddtrace/commands/ddtrace_run.py | ||
RUN rm ./decorator.py | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. why this change ? There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. file not found error was thrown during ITests, it seems it was added during a dependency version bump which created this file. |
This file was deleted.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Why do we add quotes here?