From b57b7e665c0768d8b7df987490a1c414547207ee Mon Sep 17 00:00:00 2001 From: Alessandro Astone Date: Fri, 21 Jun 2024 16:43:20 +0200 Subject: [PATCH] Always test against the system version of python3 The list is good for testing against multiple versions, but gets out-of-date whenever a new version of python3 is released. To enable testing in downstream packaging, make sure to always test against the system installed version of python3 at least. --- test/regressions/01_asyncio_changes_python310/run_tcp.sh | 2 +- test/regressions/01_asyncio_changes_python310/run_unix.sh | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/test/regressions/01_asyncio_changes_python310/run_tcp.sh b/test/regressions/01_asyncio_changes_python310/run_tcp.sh index 75ecd98..04e35bb 100755 --- a/test/regressions/01_asyncio_changes_python310/run_tcp.sh +++ b/test/regressions/01_asyncio_changes_python310/run_tcp.sh @@ -4,7 +4,7 @@ # The API for ´start_server´ was schanged in 3.10. # @see related Github issue #162 -python_versions=('3.7' '3.8' '3.9.' '3.10' '3.11') +python_versions=('3' '3.7' '3.8' '3.9.' '3.10' '3.11') socket_port="3333" diff --git a/test/regressions/01_asyncio_changes_python310/run_unix.sh b/test/regressions/01_asyncio_changes_python310/run_unix.sh index d2522fd..c613909 100755 --- a/test/regressions/01_asyncio_changes_python310/run_unix.sh +++ b/test/regressions/01_asyncio_changes_python310/run_unix.sh @@ -4,7 +4,7 @@ # The API for ´start_unix_server´ was schanged in 3.10. # @see Github issue #162 -python_versions=('3.7' '3.8' '3.9.' '3.10' '3.11') +python_versions=('3' '3.7' '3.8' '3.9.' '3.10' '3.11') socket_dir="$(mktemp -d)" socket_filename="${socket_dir}/wsdd.sock"