From 896debab6c95dd3c430fa55aaf98ecc7738b3af0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Nick=20M=C3=BCller?= Date: Wed, 27 Apr 2022 19:05:11 +0200 Subject: [PATCH] Changed default npm/python versions to valid semver (#293) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Nick Müller --- flyteidl/Makefile | 4 ++-- flyteidl/package.json | 2 +- flyteidl/setup.py | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/flyteidl/Makefile b/flyteidl/Makefile index 11171b1da4..3b5c9fed46 100644 --- a/flyteidl/Makefile +++ b/flyteidl/Makefile @@ -48,8 +48,8 @@ doc_gen_deps: doc-requirements.txt: doc-requirements.in install-piptools $(call PIP_COMPILE,doc-requirements.in) -PLACEHOLDER := "__version__\ =\ \"develop\"" -PLACEHOLDER_NPM := \"version\": \"develop\" +PLACEHOLDER := "__version__\ =\ \"0.0.0+develop\"" +PLACEHOLDER_NPM := \"version\": \"0.0.0-develop\" .PHONY: update_pyversion update_pyversion: diff --git a/flyteidl/package.json b/flyteidl/package.json index 16b232d490..0d4709c001 100644 --- a/flyteidl/package.json +++ b/flyteidl/package.json @@ -1,6 +1,6 @@ { "name": "@flyteorg/flyteidl", - "version": "develop", + "version": "0.0.0-develop", "description": "Compiled protocol buffers and gRPC service clients/servers for Flyte IDLs", "repository": { "type": "git", diff --git a/flyteidl/setup.py b/flyteidl/setup.py index 0c74133d61..88f75c680c 100644 --- a/flyteidl/setup.py +++ b/flyteidl/setup.py @@ -1,6 +1,6 @@ from setuptools import setup, find_packages -__version__ = "develop" +__version__ = "0.0.0+develop" setup( name='flyteidl',