From 75c7b397e19b65c898cf767674999a09946c654d Mon Sep 17 00:00:00 2001 From: Mainak Jas Date: Thu, 1 Apr 2021 19:06:11 -0400 Subject: [PATCH] MAINT: missing deps --- .github/workflows/unit_tests.yml | 2 +- setup.py | 4 +++- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/.github/workflows/unit_tests.yml b/.github/workflows/unit_tests.yml index 83989d15..8cfef736 100644 --- a/.github/workflows/unit_tests.yml +++ b/.github/workflows/unit_tests.yml @@ -29,7 +29,7 @@ jobs: - name: Install dependencies run: | python -m pip install --upgrade pip - pip install flake8 pytest + pip install flake8 pytest pytest-qt pytest-cov mne pip install hnn_core - name: Install HNN diff --git a/setup.py b/setup.py index 59d909c2..6651bcc7 100644 --- a/setup.py +++ b/setup.py @@ -37,5 +37,7 @@ packages=find_packages(), package_data={'hnn': ['../param/*.param']}, - install_requires=['hnn-core'] + install_requires=['nlopt', + 'psutil', + 'pyqt5'] )