File tree 5 files changed +24
-5
lines changed
5 files changed +24
-5
lines changed Original file line number Diff line number Diff line change @@ -250,3 +250,22 @@ exclude:
250
250
FRAMEWORK : grpc-1.24
251
251
- VERSION : python-3.12-rc
252
252
FRAMEWORK : grpc-1.24
253
+ # py3.12
254
+ - VERSION : python-3.12-rc
255
+ FRAMEWORK : pymssql-newest # no wheels available yet
256
+ - VERSION : python-3.12-rc
257
+ FRAMEWORK : cassandra-newest # no wheels available yet
258
+ - VERSION : python-3.12-rc
259
+ FRAMEWORK : aiohttp-newest # no wheels available yet
260
+ - VERSION : python-3.12-rc
261
+ FRAMEWORK : elasticsearch-7 # relies on aiohttp
262
+ - VERSION : python-3.12-rc
263
+ FRAMEWORK : elasticsearch-8 # relies on aiohttp
264
+ - VERSION : python-3.12-rc
265
+ FRAMEWORK : aiobotocore-newest # relies on aiohttp
266
+ - VERSION : python-3.12-rc
267
+ FRAMEWORK : sanic-20.12 # no wheels available yet
268
+ - VERSION : python-3.12-rc
269
+ FRAMEWORK : sanic-newest # no wheels available yet
270
+ - VERSION : python-3.12-rc
271
+ FRAMEWORK : grpc-newest # no wheels available yet
Original file line number Diff line number Diff line change 11
11
# delete any __pycache__ folders to avoid hard-to-debug caching issues
12
12
find . -type f -name ' *.py[co]' -delete -o -type d -name __pycache__ -delete
13
13
# pypy3 should be added to the first `if` once it supports py3.7
14
- if [[ " $$ PYTHON_VERSION" =~ ^(3.7| 3.8| 3.9| 3.10| 3.11| nightly)$$ ]] ; then \
14
+ if [[ " $$ PYTHON_VERSION" =~ ^(3.7| 3.8| 3.9| 3.10| 3.11| 3.12 | nightly)$$ ]] ; then \
15
15
echo " Python 3.7+, with asyncio" ; \
16
16
pytest -v $(PYTEST_ARGS ) --showlocals $(PYTEST_MARKER ) $(PYTEST_JUNIT ) ; \
17
17
else \
Original file line number Diff line number Diff line change 1
1
# These are the pinned requirements for the lambda layer/docker image
2
2
certifi == 2023.7.22
3
3
urllib3 == 1.26.16
4
- wrapt == 1.15.0
4
+ wrapt == 1.14.1
Original file line number Diff line number Diff line change @@ -38,7 +38,7 @@ zip_safe = false
38
38
install_requires =
39
39
urllib3!=2.0.0,<3.0.0
40
40
certifi
41
- wrapt>=1.14.1
41
+ wrapt>=1.14.1,<1.15.0 # https://github.com/elastic/apm-agent-python/issues/1894
42
42
ecs_logging
43
43
test_suite =tests
44
44
Original file line number Diff line number Diff line change 1
1
pytest==7.0.1 ; python_version == '3.6'
2
- pytest==7.3 .0 ; python_version > '3.6'
2
+ pytest==7.4 .0 ; python_version > '3.6'
3
3
pytest-random-order==1.1.0
4
4
pytest-django==4.4.0
5
5
coverage==6.2 ; python_version == '3.6'
25
25
pytz
26
26
ecs_logging
27
27
structlog
28
- wrapt>=1.14.1
28
+ wrapt>=1.14.1,<1.15.0
29
29
30
30
pytest-asyncio==0.21.0 ; python_version >= '3.7'
31
31
asynctest==0.13.0 ; python_version >= '3.7'
You can’t perform that action at this time.
0 commit comments