diff --git a/.github/workflows/build_wheels.yml b/.github/workflows/build_wheels.yml index 20698da..d1bca10 100644 --- a/.github/workflows/build_wheels.yml +++ b/.github/workflows/build_wheels.yml @@ -1,11 +1,11 @@ name: Build wheels -# on: [push, pull_request] +on: [push, pull_request] Alternatively, to publish when a (published) GitHub Release is created, use the following: -on: - release: - types: - - published +# on: +# release: +# types: +# - published jobs: build_wheels: diff --git a/quickspikes/__init__.py b/quickspikes/__init__.py index 9f52067..1333c97 100644 --- a/quickspikes/__init__.py +++ b/quickspikes/__init__.py @@ -1,11 +1,11 @@ # -*- mode: python -*- """spike detection routines -Copyright (C) 2013 Dan Meliza +Copyright (C) 2013-2024 Dan Meliza Created Wed Jul 24 09:26:36 2013 """ from .spikes import detector, peaks, subthreshold from .tools import filter_times, realign_spikes -__version__ = "2.0.3" +__version__ = "2.0.4" __all__ = ["detector", "peaks", "subthreshold", "realign_spikes", "filter_times"]