Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions .github/workflows/actions.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
- uses: actions/checkout@master
- uses: actions/setup-python@master
with:
python-version: 3.8
python-version: 3.10.19
- env:
NETSQUIDPYPI_USER: ${{ secrets.NETSQUIDPYPI_USER }}
NETSQUIDPYPI_PWD: ${{ secrets.NETSQUIDPYPI_PWD }}
Expand All @@ -25,7 +25,7 @@ jobs:
- uses: actions/checkout@master
- uses: actions/setup-python@master
with:
python-version: 3.8
python-version: 3.10.19
- env:
NETSQUIDPYPI_USER: ${{ secrets.NETSQUIDPYPI_USER }}
NETSQUIDPYPI_PWD: ${{ secrets.NETSQUIDPYPI_PWD }}
Expand All @@ -40,7 +40,7 @@ jobs:
- uses: actions/checkout@master
- uses: actions/setup-python@master
with:
python-version: 3.8
python-version: 3.10.19
- env:
NETSQUIDPYPI_USER: ${{ secrets.NETSQUIDPYPI_USER }}
NETSQUIDPYPI_PWD: ${{ secrets.NETSQUIDPYPI_PWD }}
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/publish.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,10 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@master
- name: Set up Python 3.9
- name: Set up Python 3.10.19
uses: actions/setup-python@v1
with:
python-version: 3.9
python-version: 3.10.19
- name: Install pypa/build
run: >-
python -m
Expand Down
68 changes: 0 additions & 68 deletions .gitlab-ci.yml

This file was deleted.

6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,12 @@
CHANGELOG
=========

2025-11-24 (0.13.6)
--------------------
- Pin netqasm to 2.0.0 due to breaking changes in 2.1.0
- Bump minimum netsquid version to 1.1.8 to resolve compatibility issues where older netsquid versions fail with newer scipy versions
- Bump minimum Python version to 3.10 as required netsquid 1.1.8 dependency is not available for Python 3.9 and earlier

2025-05-13 (0.13.5)
-------------------
- Fix compatibility issue in MagicNetworkLayerProtocol due to changes in netsquid-magic
Expand Down
6 changes: 3 additions & 3 deletions setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ long_description_content_type = text/x-rst
license = MIT
home_page = https://github.com/QuTech-Delft/squidasm
url = https://github.com/QuTech-Delft/squidasm
python_requires = >=3.7
python_requires = >=3.10

[options]
packages = squidasm
Expand All @@ -20,10 +20,10 @@ install_requires =
scipy >=1.8, <2.0
pydantic >=1.8.2, < 3.0
pydynaa >=0.3, <2.0
netsquid >=1.1.2, <2.0
netsquid >=1.1.8, <2.0
netsquid-magic >= 16.0.0, <17.0.0
bitarray >=2.8.0, <3.0.0
netqasm >=0.11.2
netqasm >=1.0.0, <=2.0.0
pytest >=7.1, <8.0

[options.extras_require]
Expand Down