Skip to content

Commit

Permalink
[Bug] Fix Issue #15 (#24)
Browse files Browse the repository at this point in the history
* 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.
  • Loading branch information
kevin931 authored Dec 28, 2024
1 parent dc87e6f commit 2a80409
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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: |
Expand Down

0 comments on commit 2a80409

Please sign in to comment.