File tree Expand file tree Collapse file tree 4 files changed +11
-4
lines changed
Expand file tree Collapse file tree 4 files changed +11
-4
lines changed Original file line number Diff line number Diff line change 77 runs-on : ubuntu-latest
88 steps :
99 - uses : actions/checkout@master
10- - name : Set up Python 3.8
10+ - name : Set up Python 3.9
1111 uses : actions/setup-python@v1
1212 with :
13- python-version : 3.8
13+ python-version : 3.9
1414 - name : Install pypa/build
1515 run : >-
1616 python -m
3535 if : success() && startsWith(github.ref, 'refs/tags')
3636 uses : pypa/gh-action-pypi-publish@master
3737 with :
38- password : ${{ secrets.PYPI_API_TOKEN }}
38+ password : ${{ secrets.PYPI_API_TOKEN }}
Original file line number Diff line number Diff line change 11CHANGELOG
22=========
33
4+ 2025-05-13 (0.13.5)
5+ -------------------
6+ - Fix compatibility issue in MagicNetworkLayerProtocol due to changes in netsquid-magic
7+ - Add requirement on netsquid-magic >= 16.0.0, < 17.0.0
8+
492024-12-16 (0.13.4)
510------------------
611- Bugfix for simulation time not resetting between different calls of the ` squidasm.run.stack.run.run ` method
Original file line number Diff line number Diff line change @@ -21,6 +21,7 @@ install_requires =
2121 pydantic >=1.8.2, < 3.0
2222 pydynaa >=0.3, <2.0
2323 netsquid >=1.1.2, <2.0
24+ netsquid-magic >= 16.0.0, <17.0.0
2425 bitarray >=2.8.0, <3.0.0
2526 netqasm >=0.11.2
2627 pytest >=7.1, <8.0
Original file line number Diff line number Diff line change @@ -353,7 +353,8 @@ def _handle_label_delivery(self, event):
353353 # netsquid_magic package, with one change: the `messages` dict is
354354 # returned at the end, so that their contents can be logged.
355355 try :
356- queue_item = self ._pop_from_requests_in_process (event )
356+ delivery = self ._magic_distributor .peek_delivery (event )
357+ queue_item = self ._pop_from_requests_in_process (delivery )
357358 except KeyError :
358359 # This indicates that this delivery event is not the "reference" delivery event returned by add_delivery
359360 # of the magic distributor. Since the below operations only need to be executed once, we can skip this.
You can’t perform that action at this time.
0 commit comments