File tree 3 files changed +8
-21
lines changed 3 files changed +8
-21
lines changed Original file line number Diff line number Diff line change 57
57
tox_env : py312-full
58
58
- python : ' 3.13'
59
59
tox_env : py313-full
60
- - python : ' 3.14.0-alpha .1 - 3.14'
60
+ - python : ' 3.14.0-beta .1 - 3.14'
61
61
tox_env : py314-full
62
62
- python : ' pypy-3.10'
63
63
# Pypy is a lot slower due to jit warmup costs, so don't run the
Original file line number Diff line number Diff line change @@ -12,7 +12,7 @@ black==24.4.2
12
12
# via -r requirements.in
13
13
build == 1.2.1
14
14
# via pip-tools
15
- cachetools == 5.3.3
15
+ cachetools == 5.5.2
16
16
# via tox
17
17
certifi == 2024.7.4
18
18
# via requests
@@ -32,7 +32,7 @@ docutils==0.20.1
32
32
# via
33
33
# sphinx
34
34
# sphinx-rtd-theme
35
- filelock == 3.14 .0
35
+ filelock == 3.18 .0
36
36
# via
37
37
# tox
38
38
# virtualenv
@@ -54,7 +54,7 @@ mypy-extensions==1.0.0
54
54
# via
55
55
# black
56
56
# mypy
57
- packaging == 24.1
57
+ packaging == 25.0
58
58
# via
59
59
# black
60
60
# build
@@ -65,7 +65,7 @@ pathspec==0.12.1
65
65
# via black
66
66
pip-tools == 7.4.1
67
67
# via -r requirements.in
68
- platformdirs == 4.2.2
68
+ platformdirs == 4.3.8
69
69
# via
70
70
# black
71
71
# tox
@@ -78,7 +78,7 @@ pyflakes==3.2.0
78
78
# via flake8
79
79
pygments == 2.18.0
80
80
# via sphinx
81
- pyproject-api == 1.6 .1
81
+ pyproject-api == 1.9 .1
82
82
# via tox
83
83
pyproject-hooks == 1.1.0
84
84
# via
@@ -109,15 +109,15 @@ sphinxcontrib-qthelp==1.0.7
109
109
# via sphinx
110
110
sphinxcontrib-serializinghtml == 1.1.10
111
111
# via sphinx
112
- tox == 4.15.1
112
+ tox == 4.26.0
113
113
# via -r requirements.in
114
114
types-pycurl == 7.45.3.20240421
115
115
# via -r requirements.in
116
116
typing-extensions == 4.12.2
117
117
# via mypy
118
118
urllib3 == 2.2.2
119
119
# via requests
120
- virtualenv == 20.26.6
120
+ virtualenv == 20.31.2
121
121
# via tox
122
122
wheel == 0.43.0
123
123
# via pip-tools
Original file line number Diff line number Diff line change @@ -155,19 +155,6 @@ def setUp(self) -> None:
155
155
category = DeprecationWarning ,
156
156
module = r"tornado\..*" ,
157
157
)
158
- if (3 , 14 ) <= py_ver :
159
- # TODO: This is a temporary hack pending resolution of
160
- # https://github.com/python/cpython/issues/130322
161
- # If set_event_loop is undeprecated, we can remove it; if not
162
- # we need substantial changes to this class to use asyncio.Runner
163
- # like IsolatedAsyncioTestCase does.
164
- setup_with_context_manager (self , warnings .catch_warnings ())
165
- warnings .filterwarnings (
166
- "ignore" ,
167
- message = "'asyncio.set_event_loop' is deprecated" ,
168
- category = DeprecationWarning ,
169
- module = "tornado.testing" ,
170
- )
171
158
super ().setUp ()
172
159
if type (self ).get_new_ioloop is not AsyncTestCase .get_new_ioloop :
173
160
warnings .warn ("get_new_ioloop is deprecated" , DeprecationWarning )
You can’t perform that action at this time.
0 commit comments