Skip to content

Commit

Permalink
chore(release): Add sdk 1.5.2 patch (#1182)
Browse files Browse the repository at this point in the history
  • Loading branch information
Tomcli authored Mar 13, 2023
1 parent 3d7d79a commit a9bdf36
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 6 deletions.
2 changes: 1 addition & 1 deletion sdk/python/kfp_tekton/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
# See the License for the specific language governing permissions and
# limitations under the License.

__version__ = '1.5.1'
__version__ = '1.5.2'

from ._client import TektonClient # noqa F401
from .k8s_client_helper import env_from_secret # noqa F401
2 changes: 1 addition & 1 deletion sdk/python/requirements.in
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
kfp>=1.8.10,<1.8.19
kfp>=1.8.10,<1.8.20
protobuf>=3.20.1,<4
2 changes: 1 addition & 1 deletion sdk/python/requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ idna==2.10
# via requests
jsonschema==3.2.0
# via kfp
kfp==1.8.18
kfp==1.8.19
# via -r sdk/python/requirements.in
kfp-pipeline-spec==0.1.16
# via kfp
Expand Down
7 changes: 4 additions & 3 deletions sdk/python/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,14 +20,14 @@
#
# To create a distribution for PyPi run:
#
# $ export KFP_TEKTON_VERSION=1.5.1-rc1
# $ export KFP_TEKTON_VERSION=1.5.2-rc1
# $ python3 setup.py sdist
# $ twine check dist/kfp-tekton-${KFP_TEKTON_VERSION/-rc/rc}.tar.gz
# $ twine upload --repository pypi dist/kfp-tekton-${KFP_TEKTON_VERSION/-rc/rc}.tar.gz
#
# ... or:
#
# $ make distribution KFP_TEKTON_VERSION=1.5.1-rc1
# $ make distribution KFP_TEKTON_VERSION=1.5.2-rc1
#
# =============================================================================

Expand All @@ -54,7 +54,7 @@
# NOTICE, after any updates to the following, ./requirements.in should be updated
# accordingly.
REQUIRES = [
"kfp>=1.8.10,<1.8.19",
"kfp>=1.8.10,<1.8.20",
]

TESTS_REQUIRE = [
Expand Down Expand Up @@ -194,6 +194,7 @@ def get_long_description() -> str:
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Topic :: Scientific/Engineering',
'Topic :: Scientific/Engineering :: Artificial Intelligence',
'Topic :: Software Development',
Expand Down

0 comments on commit a9bdf36

Please sign in to comment.