diff --git a/pyproject.toml b/pyproject.toml index 12aa419..88f1f0f 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -11,7 +11,7 @@ description = "Library to streamline preprocessing of RedVox API 900 and API 100 readme = "README.md" requires-python = ">=3.8" license = { file = "LICENSE" } -version = "1.4.11" +version = "1.4.12" dependencies = [ "matplotlib==3.7.1", @@ -19,7 +19,7 @@ dependencies = [ "obspy==1.4.0", "pandas==2.0.1", "pymap3d==3.0.1", - "redvox==3.6.4", + "redvox==3.6.5", "scipy==1.10.1", ] diff --git a/redpandas/__init__.py b/redpandas/__init__.py index ab94611..ca26c1c 100644 --- a/redpandas/__init__.py +++ b/redpandas/__init__.py @@ -3,7 +3,7 @@ """ NAME: str = "redpandas" -VERSION: str = "1.4.11" +VERSION: str = "1.4.12" def version() -> str: diff --git a/scripts/clean.sh b/scripts/clean.sh index 7dfc60c..0534ef0 100755 --- a/scripts/clean.sh +++ b/scripts/clean.sh @@ -9,4 +9,5 @@ find . | grep -E "(__pycache__|\.pyc|\.pyo$)" | xargs rm -rf rm -rf build rm -rf dist rm -rf redpandas.egg-info +rm -rf redvox_pandas.egg-info rm -rf .mypy_cache