forked from LINCellularNeuroscience/VAME
-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'dev' of https://github.com/EthoML/VAME into docs
- Loading branch information
Showing
29 changed files
with
1,349 additions
and
201 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
name: Build and Release | ||
|
||
on: | ||
workflow_run: | ||
workflows: [Testing] | ||
branches: [main] | ||
types: | ||
- completed | ||
jobs: | ||
pypi-release: | ||
name: Release VAME in pypi | ||
runs-on: ubuntu-latest | ||
if: ${{ github.event.workflow_run.conclusion == 'success' }} | ||
steps: | ||
- uses: actions/checkout@v3 | ||
- name: Set up Python | ||
uses: actions/setup-python@v3 | ||
with: | ||
python-version: "3.11" | ||
- name: Install dependencies | ||
run: | | ||
python -m pip install --upgrade pip | ||
pip install build | ||
pip install twine | ||
- name: Build and publish to PyPI | ||
run: | | ||
python -m build | ||
twine upload dist/* | ||
env: | ||
TWINE_USERNAME: __token__ | ||
TWINE_PASSWORD: ${{ secrets.PYPI_TOKEN }} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,39 @@ | ||
name: Testing | ||
|
||
on: | ||
push: | ||
branches: | ||
- main | ||
- dev | ||
|
||
|
||
jobs: | ||
run: | ||
name: ${{ matrix.os }} Python ${{ matrix.python-version }} | ||
runs-on: ${{ matrix.os }} | ||
strategy: | ||
fail-fast: false | ||
matrix: | ||
python-version: ["3.11"] | ||
os: [ubuntu-latest, macos-13, windows-latest] | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- run: git fetch --prune --unshallow --tags | ||
- name: Setup Python ${{ matrix.python-version }} | ||
uses: actions/setup-python@v5 | ||
with: | ||
python-version: ${{ matrix.python-version }} | ||
|
||
- name: Install tests dependencies | ||
run: | | ||
python -m pip install -U pip | ||
pip install . --no-cache-dir | ||
pip install -r tests/requirements-tests.txt --no-cache-dir | ||
- name: Run tests. | ||
run: pytest --cov=src/vame --cov-report=xml --cov-report=term-missing -v | ||
|
||
- name: Upload coverage reports to Codecov | ||
uses: codecov/[email protected] | ||
with: | ||
token: ${{ secrets.CODECOV_TOKEN }} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
prune tests | ||
prune docs | ||
prune examples | ||
prune Images |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,66 +1,12 @@ | ||
contextlib2==21.6.0 | ||
contourpy==1.2.1 | ||
cycler==0.12.1 | ||
exceptiongroup==1.2.1 | ||
execnet==2.1.1 | ||
filelock==3.14.0 | ||
fonttools==4.51.0 | ||
fsspec==2024.3.1 | ||
h5py==3.11.0 | ||
hmmlearn==0.3.2 | ||
iniconfig==2.0.0 | ||
install==1.3.5 | ||
Jinja2==3.1.4 | ||
joblib==1.4.2 | ||
kiwisolver==1.4.5 | ||
llvmlite==0.42.0 | ||
MarkupSafe==2.1.5 | ||
matplotlib==3.8.4 | ||
mock==5.1.0 | ||
mpmath==1.3.0 | ||
networkx==3.3 | ||
numba==0.59.1 | ||
numpy==1.26.4 | ||
nvidia-cublas-cu12==12.1.3.1 | ||
nvidia-cuda-cupti-cu12==12.1.105 | ||
nvidia-cuda-nvrtc-cu12==12.1.105 | ||
nvidia-cuda-runtime-cu12==12.1.105 | ||
nvidia-cudnn-cu12==8.9.2.26 | ||
nvidia-cufft-cu12==11.0.2.54 | ||
nvidia-curand-cu12==10.3.2.106 | ||
nvidia-cusolver-cu12==11.4.5.107 | ||
nvidia-cusparse-cu12==12.1.0.106 | ||
nvidia-nccl-cu12==2.20.5 | ||
nvidia-nvjitlink-cu12==12.4.127 | ||
nvidia-nvtx-cu12==12.1.105 | ||
opencv-python-headless==4.9.0.80 | ||
packaging==24.0 | ||
pandas==2.2.2 | ||
path==16.14.0 | ||
path.py==12.5.0 | ||
pathlib==1.0.1 | ||
pillow==10.3.0 | ||
pluggy==1.5.0 | ||
pynndescent==0.5.12 | ||
pyparsing==3.1.2 | ||
pytest==8.2.0 | ||
pytest-shutil==1.7.0 | ||
python-dateutil==2.9.0.post0 | ||
pytz==2024.1 | ||
PyYAML==6.0.1 | ||
ruamel.yaml==0.18.6 | ||
ruamel.yaml.clib==0.2.8 | ||
scikit-learn==1.4.2 | ||
scipy==1.13.0 | ||
six==1.16.0 | ||
sympy==1.12 | ||
termcolor==2.4.0 | ||
threadpoolctl==3.5.0 | ||
tomli==2.0.1 | ||
torch==2.3.0 | ||
torchvision==0.18.0 | ||
tqdm==4.66.4 | ||
triton==2.3.0 | ||
typing_extensions==4.11.0 | ||
tzdata==2024.1 | ||
umap-learn==0.5.6 | ||
PyYAML>=6.0.0 | ||
ruamel.yaml>=0.18.0 | ||
numpy>=1.26.0 | ||
pandas>=2.2.0 | ||
scipy>=1.13.0 | ||
matplotlib>=3.9.0 | ||
torch==2.2.2 | ||
tqdm>=4.66.0 | ||
hmmlearn>=0.3.0 | ||
opencv-python-headless>=4.9.0.0 | ||
umap-learn>=0.5.0 | ||
h5py>=3.11.0 |
Oops, something went wrong.