From ccd29d84029baf6378de6af1372e68b66af06491 Mon Sep 17 00:00:00 2001 From: Jakub Kuczys <6032823+jack1142@users.noreply.github.com> Date: Wed, 17 Aug 2022 15:18:35 +0200 Subject: [PATCH] Use CPython 3.10 instead of 3.8 that was used instead of 3.6 --- test/test_subdir_package.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/test/test_subdir_package.py b/test/test_subdir_package.py index 32a783e5..f1620598 100644 --- a/test/test_subdir_package.py +++ b/test/test_subdir_package.py @@ -51,13 +51,13 @@ def test(capfd, tmp_path): add_env={ "CIBW_BEFORE_BUILD": "python {project}/bin/before_build.py", "CIBW_TEST_COMMAND": "python {package}/test/run_tests.py", - # this shouldn't depend on the version of python, so build only CPython 3.8 - "CIBW_BUILD": "cp38-*", + # this shouldn't depend on the version of python, so build only CPython 3.10 + "CIBW_BUILD": "cp310-*", }, ) # check that the expected wheels are produced - expected_wheels = [w for w in utils.expected_wheels("spam", "0.1.0") if "cp38" in w] + expected_wheels = [w for w in utils.expected_wheels("spam", "0.1.0") if "cp310" in w] assert set(actual_wheels) == set(expected_wheels) captured = capfd.readouterr()