Skip to content

Commit ae00a8c

Browse files
committed
Merge branch 'master' into development
2 parents 8d4f06e + 2a9ae38 commit ae00a8c

3 files changed

Lines changed: 33 additions & 2 deletions

File tree

.github/dependabot.yml

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
# Source - https://stackoverflow.com/a/78380165
2+
# Posted by Stefan, modified by community. See post 'Timeline' for change history
3+
# Retrieved 2026-04-14, License - CC BY-SA 4.0
4+
5+
# Set update schedule for GitHub Actions
6+
7+
version: 2
8+
updates:
9+
10+
- package-ecosystem: "github-actions"
11+
directory: "/"
12+
schedule:
13+
# Check for updates to GitHub Actions every week
14+
interval: "weekly"

.pre-commit-config.yaml

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
# See https://pre-commit.com for more information
2+
# See https://pre-commit.com/hooks.html for more hooks
3+
repos:
4+
- repo: https://github.com/pre-commit/pre-commit-hooks
5+
rev: v6.0.0
6+
hooks:
7+
- id: trailing-whitespace
8+
- id: end-of-file-fixer
9+
- id: check-added-large-files
10+
args: [ "--maxkb=5000"]
11+
- repo: https://github.com/astral-sh/ruff-pre-commit
12+
rev: v0.15.12
13+
hooks:
14+
- id: ruff
15+
args: [ "--select", "I", "--fix" ]
16+
- id: ruff-format

setup.cfg

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,13 @@
11
[metadata]
22
name = pyelectro
3-
version = 0.2.6
3+
version = 0.2.7
44
author = Michael Vella, Padraig Gleeson
55
author_email = mv333@cam.ac.uk, p.gleeson@gmail.com
66
url = https://github.com/NeuralEnsemble/pyelectro
77
license = BSD-2-clause
88
description = A Python library for analysis of electrophysiological data
9-
long_description = file: README.md, LICENSE
9+
long_description = file: README.md
10+
long_description_content_type=text/markdown
1011
classifiers=
1112
License :: OSI Approved :: BSD License
1213
Development Status :: 3 - Alpha

0 commit comments

Comments
 (0)