Skip to content

Commit 04705cf

Browse files
authored
Merge pull request #2 from mehdijoodaki/main
fix pilot version
2 parents 84872c7 + 196c513 commit 04705cf

2 files changed

Lines changed: 5 additions & 4 deletions

File tree

.github/workflows/python-package.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
strategy:
1717
fail-fast: false
1818
matrix:
19-
python-version: ["3.11.5", "3.12"]
19+
python-version: ["3.11","3.12","3.13","3.14"]
2020

2121
steps:
2222
- uses: actions/checkout@v4
@@ -29,10 +29,10 @@ jobs:
2929
run: |
3030
python -m pip install --upgrade pip
3131
python -m pip install flake8 pytest
32+
python -m pip install git+https://github.com/Costalab/PILOT
3233
python -m pip install git+https://github.com/jsnagai/Nichesphere/
3334
python -m pip install pycrosstalker
34-
python -m pip install git+https://github.com/Costalab/PILOT@v2.0.4
35-
35+
3636
if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
3737
- name: Lint with flake8
3838
run: |

test/import_test.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,5 @@
33
def test_import_package():
44
importlib.import_module("nichesphere")
55
importlib.import_module("pycrosstalker")
6-
6+
importlib.import_module("pilotpy")
7+

0 commit comments

Comments
 (0)