Skip to content

Commit

Permalink
change python version
Browse files Browse the repository at this point in the history
  • Loading branch information
kdomino committed Oct 4, 2023
1 parent b5d9985 commit a22cbf4
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/unittest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ['3.8']
python-version: ['3.9']

steps:
- uses: actions/checkout@v3
Expand Down
1 change: 1 addition & 0 deletions AGV_quantum/linear_solver.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
from curses import A_LEFT
import itertools
import numpy as np
from typing import Callable, Dict, List, Tuple

from AGV_quantum import see_non_zero_variables, create_graph, create_iterators, create_agv_list
from typing import Optional
Expand Down
2 changes: 2 additions & 0 deletions tests/test_linear_solver.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
from typing import Callable, Dict, List, Tuple

import unittest
import numpy as np
from AGV_quantum import create_graph, create_iterators, create_same_way_dict, create_agv_list
Expand Down

0 comments on commit a22cbf4

Please sign in to comment.