From 70b373f2a68c3275293de7803ba30abdd2ce38cf Mon Sep 17 00:00:00 2001 From: Dallin Akagi Date: Mon, 14 Aug 2017 22:59:12 -0400 Subject: [PATCH 1/2] Fix manifest file directory name I don't know if this directory was renamed at some point or if this manifest has always been wrong, but this line in the manifest seems an awful lot like it wants to include all the source file of the package... but doesn't. But now it does! --- CHANGES.rst | 7 +++++++ MANIFEST.in | 2 +- datarobot_batch_scoring/__init__.py | 2 +- 3 files changed, 9 insertions(+), 2 deletions(-) diff --git a/CHANGES.rst b/CHANGES.rst index e9c0e599..bc5e6efa 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -1,3 +1,10 @@ +1.12.1 (2017 August 14) +======================= + +Bugfixes +-------- +* Updates the distribution metadata to include modules critical to the functioning of this library. + 1.12.0 (2017 August 9) ====================== diff --git a/MANIFEST.in b/MANIFEST.in index 309d275f..bd68ed5a 100644 --- a/MANIFEST.in +++ b/MANIFEST.in @@ -1,4 +1,4 @@ -recursive-include datarobot_scoring *.py +recursive-include datarobot_batch_scoring *.py include setup.py include README.rst diff --git a/datarobot_batch_scoring/__init__.py b/datarobot_batch_scoring/__init__.py index 666b2f71..fe70fa28 100644 --- a/datarobot_batch_scoring/__init__.py +++ b/datarobot_batch_scoring/__init__.py @@ -1 +1 @@ -__version__ = '1.12.0' +__version__ = '1.12.1' From 7eb6bcdbe6e2bc864069cc777fcd6ce8e96a82ff Mon Sep 17 00:00:00 2001 From: Dallin Akagi Date: Mon, 14 Aug 2017 23:07:50 -0400 Subject: [PATCH 2/2] Include network package in setup --- setup.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 5fb966c7..30d86561 100644 --- a/setup.py +++ b/setup.py @@ -42,7 +42,8 @@ maintainer_email='support@datarobot.com', license='BSD', url='http://www.datarobot.com/', - packages=['datarobot_batch_scoring'], + packages=['datarobot_batch_scoring', + 'datarobot_batch_scoring.network'], classifiers=[ 'License :: OSI Approved :: Apache Software License', 'Programming Language :: Python :: 2.7',