Skip to content

Commit

Permalink
✅ trial and error
Browse files Browse the repository at this point in the history
  • Loading branch information
nquetschlich committed Dec 4, 2024
1 parent 0198659 commit 8a65006
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
3 changes: 2 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,8 @@ dynamic = ["version"]

dependencies = [
"mqt.bench>=1.1.3",
"pytket<1.36.0", # pytket-qiskit is not compatible with pytket v1.36.0
"qiskit<1.3.0",
"pytket<1.36.0",
"sb3_contrib>=2.0.0, <2.4.0",
"torch<2.5.0",
"tqdm>=4.67.0",
Expand Down
4 changes: 3 additions & 1 deletion tests/device_selection/test_predictor_ml.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@

import sys
from pathlib import Path
from shutil import rmtree
from typing import Literal

import pytest
Expand Down Expand Up @@ -137,7 +138,8 @@ def test_compile_all_circuits_for_dev_and_fom() -> None:
assert len(name_list) > 0
assert len(scores_list) > 0

delete_path(target_path)
# delete_path(target_path)
rmtree(target_path)

if qasm_path.exists():
qasm_path.unlink()
Expand Down

0 comments on commit 8a65006

Please sign in to comment.