From d372c36f66c9d3e02bbf60b3a16d76388f88ed5e Mon Sep 17 00:00:00 2001 From: ArneBachmann Date: Thu, 14 Dec 2017 17:54:19 +0100 Subject: [PATCH] 1.0.0 --- README.md | 2 +- setup.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 683bb4d..c2f2d84 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -# Subversion Offline Solution (SOS 0.9.7) # +# Subversion Offline Solution (SOS 1.0.0) # [![Travis badge](https://travis-ci.org/ArneBachmann/sos.svg?branch=master)](https://travis-ci.org/ArneBachmann/sos) [![PyPI badge](https://img.shields.io/pypi/v/sos-vcs.svg)](https://badge.fury.io/py/sos-vcs) diff --git a/setup.py b/setup.py index 6b9e5f6..e6580c0 100644 --- a/setup.py +++ b/setup.py @@ -9,7 +9,7 @@ if BUILD: # First compile Coconut down to universal Python source print("Transpiling Coconut for packaging...") - cmd = "-develop" if os.getenv("NODEV", "false").strip().lower() != "true" or 0 == os.system("coconut-develop -l -t 3 sos%ssos.coco" % os.sep) else "" + cmd = "-develop" if os.getenv("NODEV", "false").strip().lower() != "true" or 0 == os.system("coconut-develop --help") else "" assert 0 == os.system("coconut%s -p -l -t 3 sos%ssos.coco" % (cmd, os.sep)) # TODO remove target once Python 2 problems have been fixed assert 0 == os.system("coconut%s -p -l -t 3 sos%sutility.coco" % (cmd, os.sep))