Skip to content

Commit

Permalink
Remove windows-latest
Browse files Browse the repository at this point in the history
Attach to lower version of windows since only one binary is created.
  • Loading branch information
chemix-lunacy committed Apr 14, 2024
1 parent dbf5017 commit 3ef992a
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/actions/install-llvm/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/deploy-wheels.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion src/rasqal/pyproject.toml
Original file line number Diff line number Diff line change
@@ -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" }
Expand Down

0 comments on commit 3ef992a

Please sign in to comment.