From 73d11919508a732096fe261cc78bda5f874e0320 Mon Sep 17 00:00:00 2001 From: Richie Yeung Date: Tue, 24 Oct 2023 15:58:24 +0100 Subject: [PATCH] Fix build --- .github/workflows/wheels.yml | 4 ++-- CMakeLists.txt | 3 --- 2 files changed, 2 insertions(+), 5 deletions(-) diff --git a/.github/workflows/wheels.yml b/.github/workflows/wheels.yml index 31c4277..f96a4b8 100644 --- a/.github/workflows/wheels.yml +++ b/.github/workflows/wheels.yml @@ -6,7 +6,7 @@ on: jobs: build_linux_wheels: name: build linux wheels - runs-on: ubuntu-20.04 + runs-on: ubuntu-latest env: PY_VERS: cp38-cp38 cp39-cp39 cp310-cp310 cp311-cp311 cp312-cp312 steps: @@ -54,7 +54,7 @@ jobs: python-version: '3.11' - name: build wheel (3.11) run: .github/workflows/macosbuildwheel - - name: set up python 3.12 + - name: set up python 3.12 uses: actions/setup-python@v2 with: python-version: '3.12' diff --git a/CMakeLists.txt b/CMakeLists.txt index c25558a..75afb41 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -10,6 +10,3 @@ add_subdirectory(src) add_subdirectory(cryptomite) -if(BUILD_TESTING) - add_subdirectory(test) -endif()