From 9207ad73ae0faeaecbb9fb295539202c1656e708 Mon Sep 17 00:00:00 2001 From: Joseph vantassel Date: Mon, 11 Oct 2021 20:13:35 -0500 Subject: [PATCH 1/3] :bookmark: Remove conditional tag for v1.0.0 release --- hvsrpy/meta.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hvsrpy/meta.py b/hvsrpy/meta.py index 67632de..2c7404e 100644 --- a/hvsrpy/meta.py +++ b/hvsrpy/meta.py @@ -17,4 +17,4 @@ """Metadata for hvsrpy.""" -__version__ = "1.0.0rc0" +__version__ = "1.0.0" From 70062301b172b32b8c0a57d12fcbede64087d541 Mon Sep 17 00:00:00 2001 From: Joseph vantassel Date: Mon, 11 Oct 2021 20:16:26 -0500 Subject: [PATCH 2/3] :white_check_mark: Update version number in test cases --- test/data/output/example_output_geopsy.hv | 2 +- test/data/output/example_output_hvsrpy.hv | 2 +- test/data/output/example_output_hvsrpy_az.hv | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/test/data/output/example_output_geopsy.hv b/test/data/output/example_output_geopsy.hv index b57d90a..dadb17f 100644 --- a/test/data/output/example_output_geopsy.hv +++ b/test/data/output/example_output_geopsy.hv @@ -1,4 +1,4 @@ -# hvsrpy output version 1.0.0rc0 +# hvsrpy output version 1.0.0 # Number of windows = 46 # f0 from average 0.7651 # Number of windows for f0 = 46 diff --git a/test/data/output/example_output_hvsrpy.hv b/test/data/output/example_output_hvsrpy.hv index 17415b9..26df7b1 100644 --- a/test/data/output/example_output_hvsrpy.hv +++ b/test/data/output/example_output_hvsrpy.hv @@ -1,4 +1,4 @@ -# hvsrpy output version 1.0.0rc0 +# hvsrpy output version 1.0.0 # File Name (),UT.STN11.A2_C150.miniseed # Method (),geometric-mean # Azimuth (),None diff --git a/test/data/output/example_output_hvsrpy_az.hv b/test/data/output/example_output_hvsrpy_az.hv index 7353751..8324d6e 100644 --- a/test/data/output/example_output_hvsrpy_az.hv +++ b/test/data/output/example_output_hvsrpy_az.hv @@ -1,4 +1,4 @@ -# hvsrpy output version 1.0.0rc0 +# hvsrpy output version 1.0.0 # File Name (),UT.STN11.A2_C150.miniseed # Window Length (s),60.0 # Total Number of Windows per Azimuth (),60 From 48d6aaa706e75e49fc1c243a2ad3ed2a70e2c789 Mon Sep 17 00:00:00 2001 From: Joseph vantassel Date: Mon, 11 Oct 2021 20:32:07 -0500 Subject: [PATCH 3/3] :wrench: Require numpy <= 1.20 for numba --- requirements.txt | 2 +- setup.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/requirements.txt b/requirements.txt index 77869ff..42e53f4 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,4 +1,4 @@ -numpy +numpy<=1.20 scipy obspy sigpropy>=1.0.0 diff --git a/setup.py b/setup.py index ed37af3..5b1af44 100644 --- a/setup.py +++ b/setup.py @@ -47,7 +47,7 @@ def parse_meta(path_to_meta): keywords='horizontal-to-vertical spectral ratio hv hvsr', packages=find_packages(), python_requires='>=3.6', - install_requires=['numpy', 'scipy', 'obspy', 'sigpropy>=1.0.0', + install_requires=['numpy<=1.20', 'scipy', 'obspy', 'sigpropy>=1.0.0', 'pandas', 'shapely', 'termcolor', 'matplotlib', 'click>8.0.0'], extras_require={ 'dev': ['coverage', 'sphinx-click'],