Skip to content

Commit

Permalink
Fix integration test (#27)
Browse files Browse the repository at this point in the history
  • Loading branch information
liranbg authored Feb 11, 2021
1 parent a2fad69 commit 59687c1
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 0 deletions.
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
![CI](https://github.com/nuclio/nuclio-sdk-py/workflows/CI/badge.svg)

# Nuclio SDK

Python SDK for Nuclio (www.nuclio.io, www.github.com/nuclio/nuclio).
4 changes: 4 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,8 @@
# See the License for the specific language governing permissions and
# limitations under the License.

import os

try:
from setuptools import setup
except ImportError:
Expand Down Expand Up @@ -39,6 +41,8 @@ def parse_deps():


def get_version():
if not os.path.exists("VERSION"):
return "0.0.0-dev0"
with open("VERSION", "r") as f:
version = f.read().strip()
if version.startswith("v"):
Expand Down

0 comments on commit 59687c1

Please sign in to comment.