Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 8 additions & 2 deletions .github/workflows/pre-commit.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,8 @@ on:
branches:
- "**"
pull_request:
branches:
- main

jobs:
pre-commit:
Expand All @@ -26,10 +28,14 @@ jobs:
key: ${{ runner.os }}-pip-${{ hashFiles('**/requirements.txt', '**/requirements-dev.txt') }}
restore-keys: ${{ runner.os }}-pip-

- name: Install Pre-Commit and Dependencies
- name: Install Python dependencies
run: |
set -e
python -m pip install --upgrade pip
pip install pre-commit
pip install -r requirements.txt
pip install -r requirements-dev.txt
pip install torch
pip install torch_geometric

- name: Run Pre-Commit Checks
run: pre-commit run --all-files --show-diff-on-failure
2 changes: 2 additions & 0 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,9 @@ repos:
rev: v4.3.0
hooks:
- id: trailing-whitespace
exclude: '\.svg$|docs/source/_autosummary/'
- id: end-of-file-fixer
exclude: '\.svg$|docs/source/_autosummary/'
- id: check-yaml
- id: check-added-large-files

Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@

## Welcome to BioNeuralNet Beta 0.1

![BioNeuralNet Logo](/assets/BioNeuralNet_canva_logo_WB.png)
![BioNeuralNet Logo](/assets/LOGO_WB.png)

**Note:** This is a **beta version** of BioNeuralNet. It is under active development, and certain features
may be incomplete or subject to change. Feedback and bug reports are highly encouraged to help us
Expand Down
Binary file removed assets/BioNeuralNet_canva_logo_TB.png
Binary file not shown.
1 change: 0 additions & 1 deletion assets/BioNeuralNet_canva_logo_TB.svg

This file was deleted.

Binary file removed assets/BioNeuralNet_canva_logo_WB.png
Binary file not shown.
1 change: 0 additions & 1 deletion assets/BioNeuralNet_canva_logo_WB.svg

This file was deleted.

Binary file added assets/LOGO_TB.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
1 change: 1 addition & 0 deletions assets/LOGO_TB.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/LOGO_WB.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
1 change: 1 addition & 0 deletions assets/LOGO_WB.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 1 addition & 1 deletion bioneuralnet/analysis/__init__.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
from correlation_analysis import Correlation
from .correlation_analysis import Correlation

__all__ = ["Correlation"]
Loading