Skip to content

Commit 1018383

Browse files
moving things and adjusting
1 parent 72b5d98 commit 1018383

26 files changed

+63
-157
lines changed
Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
name: pre-commit-codestyle
2+
concurrency:
3+
group: ${{ github.workflow }}-${{ github.event.number }}-${{ github.event.ref }}
4+
cancel-in-progress: true
5+
6+
on: [pull_request]
7+
8+
jobs:
9+
pre-commit:
10+
runs-on: ubuntu-latest
11+
steps:
12+
- uses: actions/checkout@v4
13+
- uses: actions/setup-python@v5
14+
- uses: pre-commit/[email protected]

.github/workflow/workflows/tests.yml

Lines changed: 45 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,45 @@
1+
name: tests
2+
concurrency:
3+
group: ${{ github.workflow }}-${{ github.event.number }}-${{ github.event.ref }}
4+
cancel-in-progress: true
5+
on:
6+
push:
7+
branches:
8+
- "master"
9+
pull_request:
10+
branches:
11+
- '*' # all branches, including forks
12+
13+
jobs:
14+
test:
15+
runs-on: ${{ matrix.os }}
16+
strategy:
17+
fail-fast: false
18+
matrix:
19+
os: [ "ubuntu-latest", "macos-latest", "windows-latest" ]
20+
python-version: ["3.9", "3.10", "3.11"]
21+
steps:
22+
## Install Braindecode
23+
- name: Checking Out Repository
24+
uses: actions/checkout@v4
25+
# Cache MNE Data
26+
# The cache key here is fixed except for os
27+
# so if you download a new mne dataset in the code, best to manually increment the key below
28+
- name: Create/Restore MNE Data Cache
29+
id: cache-mne_data
30+
uses: actions/cache@v3
31+
with:
32+
path: ~/mne_data
33+
key: ${{ runner.os }}-v3
34+
- uses: actions/setup-python@v4
35+
with:
36+
python-version: ${{ matrix.python-version }}
37+
- name: Show Python Version
38+
run: python --version
39+
# Update pip
40+
- name: Update pip
41+
run: python -m pip install --upgrade pip
42+
- name: Install EEGDash from Current Checkout
43+
run: pip install -e .
44+
# Show Braindecode Version
45+
- run: python -c "import eegdash; print(eegdash.__version__)"

eegdash.egg-info/PKG-INFO

Lines changed: 0 additions & 139 deletions
This file was deleted.

eegdash.egg-info/SOURCES.txt

Lines changed: 0 additions & 14 deletions
This file was deleted.

eegdash.egg-info/dependency_links.txt

Lines changed: 0 additions & 1 deletion
This file was deleted.

eegdash.egg-info/requires.txt

Lines changed: 0 additions & 1 deletion
This file was deleted.

eegdash.egg-info/top_level.txt

Lines changed: 0 additions & 1 deletion
This file was deleted.

eegdash/__init__.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
from .main import EEGDash, EEGDashDataset
2+
3+
__all__ = ["EEGDash", "EEGDashDataset"]
4+
__version__ = "0.1.0"
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

src/eegdash/__init__.py

Lines changed: 0 additions & 1 deletion
This file was deleted.

0 commit comments

Comments
 (0)