From a6f2fd04775b32f20f05da04071a5a5cad144bea Mon Sep 17 00:00:00 2001 From: Michael Howitz Date: Tue, 8 Nov 2022 08:45:37 +0100 Subject: [PATCH] Fix syntax --- .github/workflows/tests.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 1acc679..6e284b4 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -173,8 +173,8 @@ jobs: - name: Build BTrees (all other versions) if: > !startsWith(runner.os, 'Mac') - || !(startsWith(matrix.python-version, '3.10') - || !(startsWith(matrix.python-version, '3.11') + || !startsWith(matrix.python-version, '3.10') + || !startsWith(matrix.python-version, '3.11') run: | # Next, build the wheel *in place*. This helps ccache, and also lets us cache the configure # output (pip install uses a random temporary directory, making this difficult).