Skip to content

Commit 2c9cabc

Browse files
committed
fix sqlalchemy
Signed-off-by: emdneto <9735060+emdneto@users.noreply.github.com>
1 parent 21c1bfa commit 2c9cabc

2 files changed

Lines changed: 6 additions & 3 deletions

File tree

instrumentation/opentelemetry-instrumentation-sqlalchemy/test-requirements-2.txt

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
11
aiosqlite==0.20.0
22
asgiref==3.8.1
33
Deprecated==1.2.14
4-
greenlet==3.1.1
4+
greenlet==3.1.1 ; python_version < "3.10"
5+
greenlet==3.3.1 ; python_version >= "3.10"
56
iniconfig==2.0.0
67
packaging==24.1
78
pluggy==1.5.0

tox.ini

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -181,7 +181,8 @@ envlist =
181181
; below mean these dependencies are being used:
182182
; 0: urllib3 >=1.0.0,<2.0.0
183183
; 1: urllib3 >=2.0.0,<3.0.0
184-
py3{9,10,11,12,13,14}-test-instrumentation-urllib3-{0,1}
184+
; TODO: Add py314 testing after replacing httpretty -- problem with https tests in 3.14
185+
py3{9,10,11,12,13}-test-instrumentation-urllib3-{0,1}
185186
pypy3-test-instrumentation-urllib3-{0,1}
186187
lint-instrumentation-urllib3
187188

@@ -312,7 +313,8 @@ envlist =
312313
; 0: sqlalchemy>=1.1,<1.2
313314
; 1: sqlalchemy~=1.4 aiosqlite
314315
; 2: sqlalchemy~=2.0.0
315-
py3{9,10,11,12,13,14}-test-instrumentation-sqlalchemy-{1,2}
316+
py3{9,10,11,12,13}-test-instrumentation-sqlalchemy-{1,2}
317+
py314-test-instrumentation-sqlalchemy-2
316318
pypy3-test-instrumentation-sqlalchemy-{0,1,2}
317319
lint-instrumentation-sqlalchemy
318320

0 commit comments

Comments
 (0)