Skip to content

Commit 0b90334

Browse files
committed
tests(sanic): check with python versions 3.13 and 3.14
Signed-off-by: Varsha GS <varsha.gs@ibm.com>
1 parent 921d225 commit 0b90334

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

tests/requirements-pre314.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,8 +33,8 @@ requests-mock
3333
responses<=0.17.0
3434
# Sanic is not installable on 3.13 because `httptools, uvloop` dependencies fail to compile:
3535
# `too few arguments to function ‘_PyLong_AsByteArray’`
36-
sanic>=19.9.0; python_version < "3.13"
37-
sanic-testing>=24.6.0; python_version < "3.13"
36+
sanic>=19.9.0; # python_version < "3.13"
37+
sanic-testing>=24.6.0; # python_version < "3.13"
3838
starlette>=0.38.2
3939
sqlalchemy>=2.0.0
4040
tornado>=6.4.1

tests/requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ responses<=0.17.0
3434
# Sanic is not installable on 3.13 because `httptools, uvloop` dependencies fail to compile:
3535
# `too few arguments to function ‘_PyLong_AsByteArray’`
3636
sanic<=24.6.0; python_version < "3.9"
37-
sanic>=19.9.0; python_version >= "3.9" and python_version < "3.13"
37+
sanic>=19.9.0; python_version >= "3.9" #and python_version <= "3.13"
3838
sanic-testing>=24.6.0; python_version < "3.13"
3939
spyne>=2.14.0; python_version < "3.12"
4040
sqlalchemy>=2.0.0

0 commit comments

Comments
 (0)