Skip to content

Commit ed8ad0e

Browse files
authored
Merge branch 'next' into utcnow-deprecated
2 parents 09c0f41 + b240e80 commit ed8ad0e

File tree

4 files changed

+17
-15
lines changed

4 files changed

+17
-15
lines changed

.github/workflows/maze-runner.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99
strategy:
1010
fail-fast: false
1111
matrix:
12-
python-version: ['3.5', '3.6', '3.7', '3.8', '3.9', '3.10', '3.11', '3.12']
12+
python-version: ['3.5', '3.6', '3.7', '3.8', '3.9', '3.10', '3.11', '3.12', '3.13']
1313

1414
steps:
1515
- uses: actions/checkout@v4

.github/workflows/python-package.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99
strategy:
1010
fail-fast: false
1111
matrix:
12-
python-version: ['3.7', '3.8', '3.9', '3.10', '3.11', '3.12']
12+
python-version: ['3.7', '3.8', '3.9', '3.10', '3.11', '3.12', '3.13']
1313
os: ['ubuntu-latest']
1414
include:
1515
- python-version: '3.5'

features/celery.feature

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ Scenario Outline: Handled exceptions are delivered in Celery <celery-version>
1212
And the event "severityReason.type" equals "handledException"
1313
And the event "device.runtimeVersions.celery" matches "<celery-version>\.\d+\.\d+"
1414

15-
@not-python-3.11 @not-python-3.12
15+
@not-python-3.11 @not-python-3.12 @not-python-3.13
1616
Examples:
1717
| celery-version |
1818
| 4 |
@@ -40,7 +40,7 @@ Scenario Outline: Unhandled exceptions are delivered in Celery <celery-version>
4040
And the event "metaData.extra_data.args" string is empty
4141
And the event "metaData.extra_data.kwargs" string is empty
4242

43-
@not-python-3.11 @not-python-3.12
43+
@not-python-3.11 @not-python-3.12 @not-python-3.13
4444
Examples:
4545
| celery-version |
4646
| 4 |
@@ -72,7 +72,7 @@ Scenario Outline: Task arguments are added to metadata in Celery <celery-version
7272
And the event "metaData.extra_data.kwargs.a" equals "100"
7373
And the event "metaData.extra_data.kwargs.b" equals "200"
7474

75-
@not-python-3.11 @not-python-3.12
75+
@not-python-3.11 @not-python-3.12 @not-python-3.13
7676
Examples:
7777
| celery-version |
7878
| 4 |
@@ -101,7 +101,7 @@ Scenario Outline: Errors in shared tasks are reported in Celery <celery-version>
101101
And the event "metaData.extra_data.args.1" equals "0"
102102
And the event "metaData.extra_data.kwargs" string is empty
103103

104-
@not-python-3.11 @not-python-3.12
104+
@not-python-3.11 @not-python-3.12 @not-python-3.13
105105
Examples:
106106
| celery-version |
107107
| 4 |
@@ -116,7 +116,7 @@ Scenario Outline: Successful tasks do not report errors in Celery <celery-versio
116116
When I execute the command "python bugsnag_celery_test_app/queue_task.py add 1 2 3 4 5 6 7 a=8 b=9" in the service "celery-<celery-version>"
117117
Then I should receive no errors
118118

119-
@not-python-3.11 @not-python-3.12
119+
@not-python-3.11 @not-python-3.12 @not-python-3.13
120120
Examples:
121121
| celery-version |
122122
| 4 |
@@ -131,7 +131,7 @@ Scenario Outline: Successful shared tasks do not report errors in Celery <celery
131131
When I execute the command "python bugsnag_celery_test_app/queue_task.py divide 10 2" in the service "celery-<celery-version>"
132132
Then I should receive no errors
133133

134-
@not-python-3.11 @not-python-3.12
134+
@not-python-3.11 @not-python-3.12 @not-python-3.13
135135
Examples:
136136
| celery-version |
137137
| 4 |

tox.ini

Lines changed: 9 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,15 @@
11
[tox]
22
envlist=
3-
py{35,36,37,38,39,310,311,312}-{test,requests,flask,tornado,wsgi,bottle}
4-
py{36,37,38,39,310,311,312}-asgi
3+
py{35,36,37,38,39,310,311,312,313}-{test,requests,flask,tornado,wsgi,bottle}
4+
py{36,37,38,39,310,311,312,313}-asgi
55
py{35,36,37}-django{18,19,110,111}
66
py{35,36,37,38,39}-django20
77
py{35,36,37,38,39,310}-django{21,22}
8-
py{36,37,38,39,310,311,312}-django3
9-
py{38,39,310,311,312}-django4
10-
py{38,39,310,311,312}-{asynctest,threadtest}
11-
py{37,38,39,310,311,312}-exceptiongroup
12-
py{35,312}-{lint}
8+
py{36,37,38,39,310,311,312,313}-django3
9+
py{38,39,310,311,312,313}-django4
10+
py{38,39,310,311,312,313}-{asynctest,threadtest}
11+
py{37,38,39,310,311,312,313}-exceptiongroup
12+
py{35,313}-{lint}
1313

1414
[pytest]
1515
testpaths = tests
@@ -32,6 +32,7 @@ basepython =
3232
py310: python3.10
3333
py311: python3.11
3434
py312: python3.12
35+
py313: python3.13
3536
whitelist_externals=
3637
{toxinidir}/scripts/lint.sh
3738
deps=
@@ -65,6 +66,7 @@ deps=
6566
lint: flake8
6667
lint: mypy
6768
lint: types-pkg_resources; python_version < '3.12'
69+
lint: types-setuptools
6870
lint: types-requests
6971
lint: types-Flask
7072
lint: types-contextvars

0 commit comments

Comments
 (0)