Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
dakk committed Apr 30, 2024
1 parent bac7263 commit 38df34a
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion test/test_qlassf_to_bqm.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,8 @@
# pyqubo doesn't work on python 3.12
DISABLE_BQM_TESTS = False

if os.getenv("GITHUB_ACTIONS") and sys.version_info.minor == 12:
# os.getenv("GITHUB_ACTIONS") and
if sys.version_info.major == 3 and sys.version_info.minor == 12:
try:
import dimod
import neal
Expand Down

0 comments on commit 38df34a

Please sign in to comment.