Skip to content

Commit ed7a9c3

Browse files
committed
Update github workflows definition to use python 3.10
1 parent fea59ed commit ed7a9c3

3 files changed

Lines changed: 6 additions & 5 deletions

File tree

.github/workflows/actions.yaml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
- uses: actions/checkout@master
1111
- uses: actions/setup-python@master
1212
with:
13-
python-version: 3.8
13+
python-version: "3.12"
1414
- run: |
1515
make install
1616
make lint
@@ -22,9 +22,10 @@ jobs:
2222
- uses: actions/checkout@master
2323
- uses: actions/setup-python@master
2424
with:
25-
python-version: 3.8
25+
python-version: "3.12"
2626
- run: |
2727
make install
28+
make test-deps
2829
make tests
2930
3031
examples:
@@ -34,7 +35,7 @@ jobs:
3435
- uses: actions/checkout@master
3536
- uses: actions/setup-python@master
3637
with:
37-
python-version: 3.8
38+
python-version: "3.12"
3839
- run: |
3940
make install
4041
make examples

.github/workflows/netqasm.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
- uses: actions/checkout@master
1111
- uses: actions/setup-python@master
1212
with:
13-
python-version: 3.8
13+
python-version: "3.12"
1414
- name: Clone and install netqasm
1515
run: |
1616
git clone https://github.com/QuTech-Delft/netqasm.git

requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,4 +4,4 @@ twisted>=24.0.0
44
networkx>=3.0,<4.0
55
click>=8.0,<9.0
66
daemons>=1.3.0,<2.0.0
7-
netqasm>=1.0.0
7+
netqasm>=1.0.0,<2.0.0

0 commit comments

Comments
 (0)