Skip to content

Commit 4198b65

Browse files
committed
Merge branch 'main' of https://github.com/Nance-Lab/diff_viz into main
2 parents 9437ce4 + 57a9873 commit 4198b65

File tree

2 files changed

+22
-10
lines changed

2 files changed

+22
-10
lines changed

.github/workflows/python-package.yml

+18-3
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.8", "3.9", "3.7"]
19+
python-version: ["3.9"]
2020

2121
steps:
2222
- uses: actions/checkout@v3
@@ -27,12 +27,27 @@ jobs:
2727
- name: Install dependencies
2828
run: |
2929
python -m pip install --upgrade pip
30-
python -m pip install flake8 pytest
30+
python -m pip install flake8 pytest coverage
3131
pip install -r requirements.txt
32+
33+
- name: Clone diff_predictor and diff_classifier
34+
run: |
35+
git clone https://github.com/Nance-Lab/diff_predictor.git
36+
git clone https://github.com/Nance-Lab/diff_classifier.git
37+
- name: run setup.py for diff_predictor
38+
run: |
39+
cd diff_predictor
40+
python setup.py install
41+
42+
- name: run setup.py for diff_classifier
43+
run: |
44+
cd diff_classifier
45+
python setup.py install
46+
3247
- name: Lint with flake8
3348
run: |
3449
# stop the build if there are Python syntax errors or undefined names
35-
flake8 . --count --select=E9,F63,F7,F82 --show-source --statistics
50+
#flake8 . --count --select=E9,F63,F7,F82 --show-source --statistics
3651
# exit-zero treats all errors as warnings. The GitHub editor is 127 chars wide
3752
flake8 . --count --exit-zero --max-complexity=10 --max-line-length=127 --statistics
3853

requirements.txt

+4-7
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,13 @@
1-
pandas==1.3.2
1+
pandas
22
numpy
33
matplotlib
44
seaborn
5-
pytest>=7.3.1
5+
pytest
66
jupyter
77
ipykernel
88
streamlit_tags
99
streamlit==1.9.2
1010
numpydoc==1.5.0
11-
coverage
12-
hypothesis==6.75.9
11+
hypothesis
1312
pydata-sphinx-theme
14-
diff_predictor
15-
diff_classifier
16-
scipy
13+
scipy

0 commit comments

Comments
 (0)