From bfbff8adf6b8ca4b4e3141c41ef782de831ee7ae Mon Sep 17 00:00:00 2001 From: Miles Granger Date: Sat, 27 Apr 2024 10:38:36 +0200 Subject: [PATCH] Prior worked for windows!! --- .github/workflows/CI-python.yml | 14 -------------- 1 file changed, 14 deletions(-) diff --git a/.github/workflows/CI-python.yml b/.github/workflows/CI-python.yml index e77f669b..e77fab54 100644 --- a/.github/workflows/CI-python.yml +++ b/.github/workflows/CI-python.yml @@ -187,9 +187,6 @@ jobs: $Env:LIB += ";$Env:BLOSC2_INSTALL_PREFIX\lib;$Env:BLOSC2_INSTALL_PREFIX\lib64;$Env:BLOSC2_INSTALL_PREFIX\bin" echo "LIB=$Env:LIB" | Out-File -FilePath $Env:GITHUB_ENV -Encoding utf8 -Append - # Now just build blosc2-sys to ensure caching doesn't get in the way and sanity purposes - # cargo build --release --target ${{ matrix.conf.target-triple }} --package blosc2-sys --target-dir build -vv - - name: Setup (Linux) if: runner.os == 'Linux' env: @@ -245,17 +242,6 @@ jobs: name=$(ls -1 wheels/ | head -n 1) delvewheel repair -v wheels/$name -w dist - # Repair wheel - # $file = Get-ChildItem -Path ".\wheels\" -Filter "*.whl" | Select-Object -First 1 - # if ($file -ne $null) { - # & delvewheel repair -v $file.FullName -w dist - # } else { - # Write-Host "No .whl file found in the wheels directory." - # } - - # # Remove location of blosc2 to ensure fixing wheel works - # Remove-Item -Path $env:BLOSC2_INSTALL_PREFIX -Recurse -Force -ErrorAction SilentlyContinue - - name: Build wheel (MacOS) if: runner.os == 'macOS' uses: PyO3/maturin-action@v1