Skip to content

Commit

Permalink
Fix file includes and dependencies (#97)
Browse files Browse the repository at this point in the history
* Add include for CNN wet-dry model

* Remove `tensorflow-gpu` from requirements.txt since this should not be required anymore

* bump version to 0.3.4

* update whats-new.rst

* unpin numba again, see #92
  • Loading branch information
cchwala committed Jan 10, 2022
1 parent dfe4b14 commit 5138b2f
Show file tree
Hide file tree
Showing 4 changed files with 17 additions and 3 deletions.
2 changes: 2 additions & 0 deletions MANIFEST.in
Expand Up @@ -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

Expand Down
13 changes: 13 additions & 0 deletions docs/whats-new.rst
Expand Up @@ -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
------

Expand Down
3 changes: 1 addition & 2 deletions requirements.txt
Expand Up @@ -2,7 +2,7 @@ numpy
scipy
pandas>=0.22
matplotlib
numba<0.54
numba
h5py
xarray
netcdf4
Expand All @@ -12,4 +12,3 @@ tqdm
pykrige
future
tensorflow
tensorflow-gpu
2 changes: 1 addition & 1 deletion setup.py
Expand Up @@ -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"),
Expand Down

0 comments on commit 5138b2f

Please sign in to comment.