From fd656e0366b6ea2135d6b07b9d36f1a510b9d469 Mon Sep 17 00:00:00 2001 From: JLSteenwyk Date: Mon, 23 Oct 2023 14:25:55 -0700 Subject: [PATCH 1/2] updated github ci for testing --- .github/workflows/ci.yml | 4 ++-- requirements.txt | 14 +++++++++++++- tests/requirements.txt | 6 ------ 3 files changed, 15 insertions(+), 9 deletions(-) delete mode 100644 tests/requirements.txt diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 1eb46f2..ba78dd2 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -14,7 +14,7 @@ jobs: python-version: ${{ matrix.python-version }} - name: Install dependencies run: | - pip install -r ./tests/requirements.txt + pip install -r requirements.txt # make biokit CLI available for tests make install # install deps for tests @@ -35,7 +35,7 @@ jobs: python-version: '3.10' - name: Install dependencies run: | - pip install -r ./tests/requirements.txt + pip install -r requirements.txt # make clipkit CLI available for tests make install # install test dependencies diff --git a/requirements.txt b/requirements.txt index a2c9820..595bf41 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,2 +1,14 @@ -biopython==1.81 +biopython==1.76 +coverage==7.3.2 +Cython==3.0.4 +exceptiongroup==1.1.3 +iniconfig==2.0.0 +jlsteenwyk-biokit==0.1.2 +mock==5.1.0 numpy==1.24.0 +packaging==23.2 +pluggy==1.3.0 +pytest==7.4.2 +pytest-cov==4.1.0 +pytest-mock==3.0.0 +tomli==2.0.1 diff --git a/tests/requirements.txt b/tests/requirements.txt deleted file mode 100644 index ca99e6e..0000000 --- a/tests/requirements.txt +++ /dev/null @@ -1,6 +0,0 @@ -mock==5.1.0 -pytest-cov==4.1.0 -pytest-mock==3.0.0 -pytest==7.4.2 -biopython==1.76 -numpy==1.24.0 From 85dd571bfdbe6ed2d6a4bc6dc7ef6c3b824a9334 Mon Sep 17 00:00:00 2001 From: JLSteenwyk Date: Mon, 23 Oct 2023 14:27:26 -0700 Subject: [PATCH 2/2] removed biokit from the requirements --- requirements.txt | 1 - 1 file changed, 1 deletion(-) diff --git a/requirements.txt b/requirements.txt index 595bf41..d42ce2d 100644 --- a/requirements.txt +++ b/requirements.txt @@ -3,7 +3,6 @@ coverage==7.3.2 Cython==3.0.4 exceptiongroup==1.1.3 iniconfig==2.0.0 -jlsteenwyk-biokit==0.1.2 mock==5.1.0 numpy==1.24.0 packaging==23.2