diff --git a/.github/actions/install-llvm/action.yml b/.github/actions/install-llvm/action.yml index 36d44e4..aa8bf7c 100644 --- a/.github/actions/install-llvm/action.yml +++ b/.github/actions/install-llvm/action.yml @@ -35,7 +35,7 @@ runs: choco install --accept-license -y ninja choco uninstall -y llvm shell: pwsh - if: ${{ (inputs.os == 'windows-2019' || inputs.os == 'windows-latest') && (steps.cache-llvm.outputs.cache-hit != 'true') }} + if: ${{ (inputs.os == 'windows-2019') && (steps.cache-llvm.outputs.cache-hit != 'true') }} - name: MacOS - Install build dependencies, ccache, ninja run: brew install ccache ninja shell: pwsh diff --git a/.github/workflows/deploy-wheels.yml b/.github/workflows/deploy-wheels.yml index 5f93a4f..715744b 100644 --- a/.github/workflows/deploy-wheels.yml +++ b/.github/workflows/deploy-wheels.yml @@ -10,7 +10,7 @@ jobs: strategy: fail-fast: false matrix: - os: ["ubuntu-20.04", "windows-2019", "windows-latest", "macos-14", "macos-latest"] + os: ["ubuntu-20.04", "windows-2019", "macos-14", "macos-latest"] steps: - uses: actions/checkout@v4 - name: Setup rust toolchain diff --git a/src/rasqal/pyproject.toml b/src/rasqal/pyproject.toml index 17ec776..bc63cf1 100644 --- a/src/rasqal/pyproject.toml +++ b/src/rasqal/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "rasqal" -version = "0.1.3" +version = "0.1.4" requires-python = ">=3.9" description = "A dynamically executed quantum-classical hybrid optimizing runtime." license = { file = "LICENSE" }