diff --git a/MANIFEST.in b/MANIFEST.in index 7754951..dc6d8d9 100644 --- a/MANIFEST.in +++ b/MANIFEST.in @@ -8,6 +8,8 @@ recursive-include notebooks *.py recursive-include pycomlink/io/example_data * recursive-include pycomlink/tests/test_data * +recursive-include pycomlink/processing/wet_dry/cnn_model_files * + recursive-exclude notebooks __init__.py recursive-exclude notebooks *.pyc diff --git a/docs/whats-new.rst b/docs/whats-new.rst index b6c5bce..dd1a200 100644 --- a/docs/whats-new.rst +++ b/docs/whats-new.rst @@ -2,6 +2,19 @@ What's New ********************** + +v0.3.4 +------ + +Bug fixes +~~~~~~~~~ +* Reference files are now included in conda-forge build (PR #97) + +Maintenance +~~~~~~~~~~~~ +* `tensorflow-gpu` dependency (which seems to be obsolete) was removed from requirements (PR #97) + + v0.3.3 ------ diff --git a/requirements.txt b/requirements.txt index 67b641b..77fdde0 100644 --- a/requirements.txt +++ b/requirements.txt @@ -2,7 +2,7 @@ numpy scipy pandas>=0.22 matplotlib -numba<0.54 +numba h5py xarray netcdf4 @@ -12,4 +12,3 @@ tqdm pykrige future tensorflow -tensorflow-gpu diff --git a/setup.py b/setup.py index 26b751c..d67c905 100644 --- a/setup.py +++ b/setup.py @@ -20,7 +20,7 @@ def read(fname): setup( name = "pycomlink", - version = "0.3.3", + version = "0.3.4", author = "Christian Chwala", author_email = "christian.chwala@kit.edu", description = ("Python tools for CML (commercial microwave link) data processing"),