Skip to content

Commit 50fcc04

Browse files
authored
Merge branch 'master' into aliu/rename-ff-module
2 parents a1dcd09 + 7f73c9e commit 50fcc04

File tree

3 files changed

+7
-7
lines changed

3 files changed

+7
-7
lines changed

.github/workflows/test-integrations-web-2.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ jobs:
2929
strategy:
3030
fail-fast: false
3131
matrix:
32-
python-version: ["3.6","3.7","3.8","3.11","3.12","3.13"]
32+
python-version: ["3.6","3.7","3.8","3.9","3.11","3.12","3.13"]
3333
# python3.6 reached EOL and is no longer being supported on
3434
# new versions of hosted runners on Github Actions
3535
# ubuntu-20.04 is the last version that supported python3.6

sentry_sdk/integrations/arq.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -71,6 +71,7 @@ def setup_once():
7171
def patch_enqueue_job():
7272
# type: () -> None
7373
old_enqueue_job = ArqRedis.enqueue_job
74+
original_kwdefaults = old_enqueue_job.__kwdefaults__
7475

7576
async def _sentry_enqueue_job(self, function, *args, **kwargs):
7677
# type: (ArqRedis, str, *Any, **Any) -> Optional[Job]
@@ -83,6 +84,7 @@ async def _sentry_enqueue_job(self, function, *args, **kwargs):
8384
):
8485
return await old_enqueue_job(self, function, *args, **kwargs)
8586

87+
_sentry_enqueue_job.__kwdefaults__ = original_kwdefaults
8688
ArqRedis.enqueue_job = _sentry_enqueue_job
8789

8890

tox.ini

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -247,9 +247,8 @@ envlist =
247247
# Sanic
248248
{py3.6,py3.7}-sanic-v{0.8}
249249
{py3.6,py3.8}-sanic-v{20}
250-
{py3.7,py3.11}-sanic-v{22}
251-
{py3.7,py3.11}-sanic-v{23}
252-
{py3.8,py3.11,py3.12}-sanic-latest
250+
{py3.8,py3.11,py3.12}-sanic-v{24.6}
251+
{py3.9,py3.12,py3.13}-sanic-latest
253252

254253
# Spark
255254
{py3.8,py3.10,py3.11}-spark-v{3.1,3.3,3.5}
@@ -652,13 +651,12 @@ deps =
652651
# Sanic
653652
sanic: websockets<11.0
654653
sanic: aiohttp
655-
sanic-v{22,23}: sanic_testing
654+
sanic-v{24.6}: sanic_testing
656655
sanic-latest: sanic_testing
657656
{py3.6}-sanic: aiocontextvars==0.2.1
658657
sanic-v0.8: sanic~=0.8.0
659658
sanic-v20: sanic~=20.0
660-
sanic-v22: sanic~=22.0
661-
sanic-v23: sanic~=23.0
659+
sanic-v24.6: sanic~=24.6.0
662660
sanic-latest: sanic
663661

664662
# Spark

0 commit comments

Comments
 (0)