From 3f95804153b2d31e71caf8530cd6ab1d0f9f6a09 Mon Sep 17 00:00:00 2001 From: WrathfulSpatula Date: Tue, 24 Dec 2024 22:32:49 -0500 Subject: [PATCH] Try to fix builds --- .github/workflows/build.yml | 40 ------------------------------------- setup.py | 1 + 2 files changed, 1 insertion(+), 40 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 19752c5..609a90a 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -225,43 +225,3 @@ jobs: name: pyqrack-${{ matrix.platform }} path: dist/ - build_windows: - runs-on: windows-latest # Use a Linux runner - strategy: - matrix: - platform: - - win-amd64 - dependencies: [vcpkg] - steps: - - name: Checkout Eratosthenes - uses: actions/checkout@v4 - - - name: Set up Python - uses: actions/setup-python@v5 - with: - python-version: '3.10' - - - name: Install Python Dependencies - run: | - python -m pip install --upgrade pip - python -m pip install wheel setuptools - - - name: Mount vcpkg cache - uses: actions/cache@v4 - with: - path: "~/.cache/vcpkg/archives" - key: vcpkg-${{ matrix.os }} - - - name: Install vcpkg dependencies - run: | - vcpkg install pybind11 - - - name: Build Wheel - run: | - python setup.py bdist_wheel --plat-name=${{ matrix.platform }} - - - name: Upload Artifacts - uses: actions/upload-artifact@v4 - with: - name: pyqrack-${{ matrix.platform }} - path: dist/ diff --git a/setup.py b/setup.py index aeedc7d..a16fa55 100644 --- a/setup.py +++ b/setup.py @@ -1,4 +1,5 @@ import os +import setuptools from distutils.core import setup, Extension cpp_args = ['-std=c++17', '-lpthread']