Skip to content

Commit

Permalink
resolve properly
Browse files Browse the repository at this point in the history
  • Loading branch information
flying-sheep authored Apr 5, 2024
1 parent 6cb6a9b commit 7d010fa
Showing 1 changed file with 9 additions and 8 deletions.
17 changes: 9 additions & 8 deletions .github/workflows/pythonpackage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,18 +18,19 @@ jobs:
python-version: [3.8, 3.12]

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v1
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install tools
run: python -m pip install --upgrade pip
- name: Install dependencies
run: |
python -m pip install --upgrade pip
python -m pip install ".[test]"
# python -m pip install mofapy2
python -m pip install git+https://github.com/bioFAM/mofapy2
python -m pip install git+https://github.com/scverse/mudata
run: >
pip install
".[test]"
git+https://github.com/bioFAM/mofapy2
git+https://github.com/scverse/mudata
- name: List dependencies
run: |
pip list
Expand Down

0 comments on commit 7d010fa

Please sign in to comment.