Skip to content

Commit

Permalink
Update Python SDK versions for release. (#1860)
Browse files Browse the repository at this point in the history
  • Loading branch information
neuromage authored Aug 16, 2019
1 parent 0d898cb commit 5bcc665
Show file tree
Hide file tree
Showing 2 changed files with 30 additions and 31 deletions.
47 changes: 22 additions & 25 deletions components/gcp/container/component_sdk/python/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,42 +14,39 @@

from setuptools import setup

PACKAGE_NAME = "kfp-component"
VERSION = '0.1.25'
PACKAGE_NAME = 'kfp-component'
VERSION = '0.1.26'

setup(
name=PACKAGE_NAME,
version=VERSION,
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,
)
14 changes: 8 additions & 6 deletions sdk/python/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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',
Expand All @@ -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',
Expand Down Expand Up @@ -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'
]
})

0 comments on commit 5bcc665

Please sign in to comment.