Skip to content

Commit

Permalink
Changed default npm/python versions to valid semver (#293)
Browse files Browse the repository at this point in the history
Signed-off-by: Nick Müller <[email protected]>
Signed-off-by: Eduardo Apolinario <[email protected]>
  • Loading branch information
MorpheusXAUT authored and eapolinario committed Sep 13, 2023
1 parent 4c43166 commit 3f0b4fc
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions flyteidl/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down
2 changes: 1 addition & 1 deletion flyteidl/package.json
Original file line number Diff line number Diff line change
@@ -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",
Expand Down
2 changes: 1 addition & 1 deletion flyteidl/setup.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
from setuptools import setup, find_packages

__version__ = "develop"
__version__ = "0.0.0+develop"

setup(
name='flyteidl',
Expand Down

0 comments on commit 3f0b4fc

Please sign in to comment.