Skip to content

Commit

Permalink
refactor: adding comment to x86 dep for mac
Browse files Browse the repository at this point in the history
  • Loading branch information
vprusso committed Feb 14, 2025
1 parent f6bb9d7 commit 59d52f0
Show file tree
Hide file tree
Showing 2 changed files with 93 additions and 34 deletions.
121 changes: 88 additions & 33 deletions poetry.lock

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

6 changes: 5 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,11 @@ qiskit-ibm-runtime = "^0.35.0"
scipy = "^1.15.1"
tabulate = "^0.9.0"
qbraid = {extras = ["ionq", "qir", "braket", "azure"], version = "^0.9.3"}
ruamel-yaml-clib = "0.2.8"
# Use ruamel-yamlmclib 0.2.8 on x86-based Macs (Apple Silicon)
ruamel-yaml-clib = [
{ version = "0.2.12", markers = "sys_platform == 'darwin' and platform_machine == 'arm64'" },
{ version = "0.2.8", markers = "sys_platform == 'darwin' and platform_machine == 'x86_64'" }
]
pyquil = "^4.16.0"

[tool.poetry.group.dev.dependencies]
Expand Down

0 comments on commit 59d52f0

Please sign in to comment.