Bugfix to accomodate scipy versions >=1.13. Fixed the version of scipy to be at least this one. Updated readme regarding version bumping
This commit is contained in:
parent
a1802686d1
commit
afffa0b2ca
@ -1,5 +1,5 @@
|
|||||||
cmake_minimum_required(VERSION 3.16)
|
cmake_minimum_required(VERSION 3.16)
|
||||||
project(LASP LANGUAGES C CXX VERSION 1.1)
|
project(LASP LANGUAGES C CXX VERSION 1.6.2)
|
||||||
|
|
||||||
set(CMAKE_CXX_STANDARD 17)
|
set(CMAKE_CXX_STANDARD 17)
|
||||||
set(CMAKE_CXX_STANDARD_REQUIRED)
|
set(CMAKE_CXX_STANDARD_REQUIRED)
|
||||||
|
13
README.md
13
README.md
@ -144,3 +144,16 @@ This will build the documentation. It can be read by:
|
|||||||
|
|
||||||
- See examples directories for IPython notebooks.
|
- See examples directories for IPython notebooks.
|
||||||
- Please refer to the [documentation](https://lasp.ascee.nl/) for features.
|
- Please refer to the [documentation](https://lasp.ascee.nl/) for features.
|
||||||
|
|
||||||
|
|
||||||
|
# Development docs
|
||||||
|
|
||||||
|
## Bumping version number
|
||||||
|
|
||||||
|
When bumping the version number, please update the number in
|
||||||
|
|
||||||
|
- `pyproject.toml`
|
||||||
|
- `CMakeLists.txt`
|
||||||
|
|
||||||
|
Then, create a commit with tag `vX.X.X`, and push it.
|
||||||
|
|
||||||
|
@ -5,7 +5,7 @@ requires-python = ">=3.10"
|
|||||||
description = "Library for Acoustic Signal Processing"
|
description = "Library for Acoustic Signal Processing"
|
||||||
license = { "file" = "LICENSE" }
|
license = { "file" = "LICENSE" }
|
||||||
authors = [{ "name" = "J.A. de Jong", "email" = "j.a.dejong@ascee.nl" }]
|
authors = [{ "name" = "J.A. de Jong", "email" = "j.a.dejong@ascee.nl" }]
|
||||||
version = "1.6.1"
|
version = "1.6.2"
|
||||||
|
|
||||||
keywords = ["DSP", "DAQ", "Signal processing"]
|
keywords = ["DSP", "DAQ", "Signal processing"]
|
||||||
|
|
||||||
@ -23,7 +23,7 @@ classifiers = [
|
|||||||
urls = { "Documentation" = "https://lasp.ascee.nl" }
|
urls = { "Documentation" = "https://lasp.ascee.nl" }
|
||||||
|
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"scipy==1.12",
|
"scipy>=1.13.1",
|
||||||
"matplotlib>=3.7.2",
|
"matplotlib>=3.7.2",
|
||||||
"appdirs",
|
"appdirs",
|
||||||
"dataclasses_json",
|
"dataclasses_json",
|
||||||
|
@ -11,7 +11,8 @@ __all__ = ['freqResponse', 'bandpass_fir_design', 'lowpass_fir_design',
|
|||||||
'arbitrary_fir_design']
|
'arbitrary_fir_design']
|
||||||
|
|
||||||
import numpy as np
|
import numpy as np
|
||||||
from scipy.signal import freqz, hann, firwin2
|
from scipy.signal import freqz, firwin2
|
||||||
|
from scipy.signal.windows import hann
|
||||||
from ..lasp_config import empty
|
from ..lasp_config import empty
|
||||||
|
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user