From 4af80e91979131a33f655079521499299ea62ad2 Mon Sep 17 00:00:00 2001 From: Ajay Gopinathan Date: Thu, 15 Aug 2019 16:31:29 -0700 Subject: [PATCH] Update Python SDK versions for release. --- .../container/component_sdk/python/setup.py | 47 +++++++++---------- sdk/python/setup.py | 14 +++--- 2 files changed, 30 insertions(+), 31 deletions(-) diff --git a/components/gcp/container/component_sdk/python/setup.py b/components/gcp/container/component_sdk/python/setup.py index ba988792bf2..c79a908620f 100644 --- a/components/gcp/container/component_sdk/python/setup.py +++ b/components/gcp/container/component_sdk/python/setup.py @@ -14,8 +14,8 @@ from setuptools import setup -PACKAGE_NAME = "kfp-component" -VERSION = '0.1.25' +PACKAGE_NAME = 'kfp-component' +VERSION = '0.1.26' setup( name=PACKAGE_NAME, @@ -23,33 +23,30 @@ description='KubeFlow Pipelines Component SDK', author='google', install_requires=[ - 'kubernetes >= 8.0.1', - 'urllib3>=1.15,<1.25', - 'fire == 0.1.3', - 'google-api-python-client == 1.7.8', - 'google-cloud-storage == 1.14.0', - 'google-cloud-bigquery == 1.9.0' + 'kubernetes >= 8.0.1', 'urllib3>=1.15,<1.25', 'fire == 0.1.3', + 'google-api-python-client == 1.7.8', 'google-cloud-storage == 1.14.0', + 'google-cloud-bigquery == 1.9.0' ], packages=[ - 'kfp_component', + 'kfp_component', ], classifiers=[ - 'Intended Audience :: Developers', - 'Intended Audience :: Education', - 'Intended Audience :: Science/Research', - 'License :: OSI Approved :: Apache Software License', - 'Programming Language :: Python', - 'Programming Language :: Python :: 2', - 'Programming Language :: Python :: 2.7', - 'Programming Language :: Python :: 3', - 'Programming Language :: Python :: 3.5', - 'Programming Language :: Python :: 3.6', - 'Programming Language :: Python :: 3.7', - 'Topic :: Scientific/Engineering', - 'Topic :: Scientific/Engineering :: Artificial Intelligence', - 'Topic :: Software Development', - 'Topic :: Software Development :: Libraries', - 'Topic :: Software Development :: Libraries :: Python Modules', + 'Intended Audience :: Developers', + 'Intended Audience :: Education', + 'Intended Audience :: Science/Research', + 'License :: OSI Approved :: Apache Software License', + 'Programming Language :: Python', + 'Programming Language :: Python :: 2', + 'Programming Language :: Python :: 2.7', + 'Programming Language :: Python :: 3', + 'Programming Language :: Python :: 3.5', + 'Programming Language :: Python :: 3.6', + 'Programming Language :: Python :: 3.7', + 'Topic :: Scientific/Engineering', + 'Topic :: Scientific/Engineering :: Artificial Intelligence', + 'Topic :: Software Development', + 'Topic :: Software Development :: Libraries', + 'Topic :: Software Development :: Libraries :: Python Modules', ], include_package_data=True, ) diff --git a/sdk/python/setup.py b/sdk/python/setup.py index cf0945ff1b0..690ca76746e 100644 --- a/sdk/python/setup.py +++ b/sdk/python/setup.py @@ -15,10 +15,10 @@ from setuptools import setup NAME = 'kfp' -VERSION = '0.1.25' +VERSION = '0.1.26' REQUIRES = [ - 'urllib3>=1.15,<1.25', #Fixing the version conflict with the "requests" package + 'urllib3>=1.15,<1.25', #Fixing the version conflict with the "requests" package 'six >= 1.10', 'certifi', 'python-dateutil', @@ -30,7 +30,7 @@ 'google-auth>=1.6.1', 'requests_toolbelt>=0.8.0', 'cloudpickle', - 'kfp-server-api >= 0.1.18, <= 0.1.25', #Update the upper version whenever a new version of the kfp-server-api package is released. Update the lower version when there is a breaking change in kfp-server-api. + 'kfp-server-api >= 0.1.18, <= 0.1.25', #Update the upper version whenever a new version of the kfp-server-api package is released. Update the lower version when there is a breaking change in kfp-server-api. 'argo-models == 2.2.1a', #2.2.1a is equivalent to argo 2.2.1 'jsonschema >= 3.0.1', 'tabulate == 0.8.3', @@ -70,6 +70,8 @@ ], python_requires='>=3.5.3', include_package_data=True, - entry_points={'console_scripts': [ - 'dsl-compile = kfp.compiler.main:main', - 'kfp=kfp.__main__:main']}) + entry_points={ + 'console_scripts': [ + 'dsl-compile = kfp.compiler.main:main', 'kfp=kfp.__main__:main' + ] + })