Skip to content

Commit 4441360

Browse files
authored
Merge release/0.16.2 into master
2 parents c986dca + 1737ba8 commit 4441360

File tree

4 files changed

+6
-3
lines changed

4 files changed

+6
-3
lines changed

docs/conf.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
copyright = u"2019, Sentry Team and Contributors"
2323
author = u"Sentry Team and Contributors"
2424

25-
release = "0.16.1"
25+
release = "0.16.2"
2626
version = ".".join(release.split(".")[:2]) # The short X.Y version.
2727

2828

sentry_sdk/consts.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@ def _get_default_options():
8989
del _get_default_options
9090

9191

92-
VERSION = "0.16.1"
92+
VERSION = "0.16.2"
9393
SDK_INFO = {
9494
"name": "sentry.python",
9595
"version": VERSION,

setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212

1313
setup(
1414
name="sentry-sdk",
15-
version="0.16.1",
15+
version="0.16.2",
1616
author="Sentry Team and Contributors",
1717
author_email="hello@sentry.io",
1818
url="https://github.com/getsentry/sentry-python",

tests/integrations/aws_lambda/test_aws.py

+3
Original file line numberDiff line numberDiff line change
@@ -57,6 +57,9 @@ def lambda_client():
5757

5858
@pytest.fixture(params=["python3.6", "python3.7", "python3.8", "python2.7"])
5959
def run_lambda_function(tmpdir, lambda_client, request, relay_normalize):
60+
if request.param == "python3.8":
61+
pytest.xfail("Python 3.8 is currently broken")
62+
6063
def inner(code, payload):
6164
runtime = request.param
6265
tmpdir.ensure_dir("lambda_tmp").remove()

0 commit comments

Comments
 (0)