From 70ecc8724eab493f1d90613b052539eddd8bcd23 Mon Sep 17 00:00:00 2001 From: Daniel Mills Date: Mon, 18 Mar 2024 10:44:34 +0000 Subject: [PATCH] Check install versions --- .github/workflows/build_and_test.yml | 2 ++ setup.py | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/build_and_test.yml b/.github/workflows/build_and_test.yml index b3a71336..ddc69a12 100644 --- a/.github/workflows/build_and_test.yml +++ b/.github/workflows/build_and_test.yml @@ -25,11 +25,13 @@ jobs: if: github.event_name == 'pull_request' run: | pip install -e . -v + pip list - name: Test qermit if: github.event_name == 'pull_request' run: | cd tests pip install -r test_requirements.txt + pip list pytest --cov-report term-missing:skip-covered --cov=qermit --durations=10 linux: diff --git a/setup.py b/setup.py index 188bc32e..5bf9c840 100644 --- a/setup.py +++ b/setup.py @@ -14,7 +14,7 @@ license="CQC Non-Commercial Use Software Licence", include_package_data=True, packages=find_packages(), - install_requires=["pytket ~= 1.11", "matplotlib", "networkx"], + install_requires=["pytket", "matplotlib", "networkx"], classifiers=[ "Environment :: Console", "Programming Language :: Python :: 3.10",