Skip to content
This repository was archived by the owner on Feb 4, 2025. It is now read-only.
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 1 addition & 11 deletions .github/workflows/tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ on:
jobs:
lint:
name: Static analysis
runs-on: ubuntu-latest
runs-on: macos-13
steps:
- uses: actions/checkout@v4
- name: Set up Python
Expand All @@ -31,20 +31,10 @@ jobs:
fail-fast: false
matrix:
os:
- ubuntu-latest
- macos-13 # runs x64
- macos-14 # runs arm64
- windows-latest
python-version:
- "3.9"
- "3.10"
- "3.11"
- "3.12"
exclude:
- os: macos-13
python-version: "3.11"
- os: macos-13
python-version: "3.12"
runs-on: ${{ matrix.os }}
env:
PYTHON_KEYRING_BACKEND: keyring.backends.null.Keyring
Expand Down
96 changes: 56 additions & 40 deletions poetry.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 7 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -30,9 +30,15 @@ pydantic-settings = "^2.3.1"
qiskit = "^1.1.0"
oauthlib = "^3.2.2"
requests = "^2.32.3"
opensquirrel = {git = "https://github.com/QuTech-Delft/OpenSquirrel.git", rev = "82498f268682deac89add8a11b93b27079c46e6d"}
opensquirrel = {version= "0.0.5", source="testpypi"}
libqasm = {version= "0.6.7", source="testpypi"}


# Secondary source (Test PyPI)
[[tool.poetry.source]]
name = "testpypi"
url = "https://test.pypi.org/simple"

[tool.poetry.extras]
local = ["qxelarator"]

Expand Down