From 2a80409ec331f1bd85a5f97f9dfaf5f918ea089e Mon Sep 17 00:00:00 2001 From: Kevin Wang <42781565+kevin931@users.noreply.github.com> Date: Sat, 28 Dec 2024 21:25:37 +0000 Subject: [PATCH] [Bug] Fix Issue #15 (#24) * Remove 3.12 for testing * Add setuptools into installation list See https://docs.python.org/3/whatsnew/3.12.html for documentation on its possible removal in virtual environments. --- .github/workflows/ci.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 7824e03..594ff35 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -8,7 +8,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - python-version: ['3.9', '3.10', '3.11', '3.12'] #'3.13' + python-version: ['3.9', '3.10', '3.11', '3.12'] #'3.13' steps: - uses: actions/checkout@v4 @@ -22,6 +22,7 @@ jobs: python -m pip install pytest pytest-mock pytest-cov pip install -r requirements.txt pip install CytofDR + python -m pip install setuptools python setup.py install - name: Test with pytest run: |