Skip to content

Commit cadee87

Browse files
authored
Merge pull request #176 from leaf-ai/prescriptors_module
#175 Make covid_xprize/examples/prescriptors a module
2 parents 7166409 + 1b18fe5 commit cadee87

File tree

6 files changed

+5
-3
lines changed

6 files changed

+5
-3
lines changed

covid_xprize/examples/prescriptors/__init__.py

Whitespace-only changes.

covid_xprize/examples/prescriptors/blind_greedy/__init__.py

Whitespace-only changes.

covid_xprize/examples/prescriptors/random/__init__.py

Whitespace-only changes.

covid_xprize/examples/prescriptors/zero/__init__.py

Whitespace-only changes.

requirements.txt

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,10 @@ numpy==1.18.5
55
notebook==6.1.5
66
scikit-learn==0.23.2
77
scipy==1.5.2
8-
tensorflow==2.2.1
8+
tensorflow==2.2.2
99
keras==2.4.3
1010
neat-python==0.92
11+
h5py==2.10.0
1112

1213
# plotting
1314
plotly==4.11.0

setup.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
import sys
88
from setuptools import setup, find_packages
99

10-
LIBRARY_VERSION = '1.0.9'
10+
LIBRARY_VERSION = '1.1.0'
1111

1212
CURRENT_PYTHON = sys.version_info[:2]
1313
REQUIRED_PYTHON = (3, 6)
@@ -64,7 +64,8 @@ def read(fname):
6464
'scikit-learn==0.23.2',
6565
'scipy==1.5.2',
6666
'setuptools==41.0.0',
67-
'tensorflow==2.2.1'
67+
'tensorflow==2.2.2',
68+
'h5py==2.10.0'
6869
],
6970
description='Contains sample code and notebooks '
7071
'for developing and validating entries for the Cognizant COVID X-Prize.',

0 commit comments

Comments
 (0)