Skip to content

Commit ed59001

Browse files
authored
Merge pull request #139 from abitrolly/master
Fix Travis CI and merge missing version bump
2 parents b80a80e + 994ea3c commit ed59001

9 files changed

Lines changed: 11 additions & 11 deletions

File tree

.bumpversion.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[bumpversion]
2-
current_version = 0.2.2
2+
current_version = 0.3.0
33
commit = True
44
tag = True
55

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Grumpy: Go running Python
22

3-
[![Build Status](https://travis-ci.org/alanjds/grumpy.svg?branch=master)](https://travis-ci.org/alanjds/grumpy)
3+
[![Build Status](https://travis-ci.org/grumpyhome/grumpy.svg?branch=master)](https://travis-ci.org/grumpyhome/grumpy)
44
[![Join the chat at https://gitter.im/grumpy-devel/Lobby](https://badges.gitter.im/grumpy-devel/Lobby.svg)](https://gitter.im/grumpy-devel/Lobby?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)
55
[![License](https://img.shields.io/badge/License-Apache%202.0-blue.svg)](https://opensource.org/licenses/Apache-2.0)
66

@@ -62,7 +62,7 @@ There are three basic categories of incomplete functionality:
6262
The commands ahead assumes that you have Golang installed and a recent
6363
version of Python 2, `setuptools` and `pip`.
6464

65-
### Method 1: binary package
65+
### Method 0: binary package
6666

6767
For convenience, a Python package is provided from the PyPI. During install,
6868
many Grumpy will be compiled and stored inside your Python installation.

grumpy-runtime-src/Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -234,7 +234,7 @@ build/gofmt.diff: $(wildcard runtime/*.go)
234234
@gofmt -d $^ > $@
235235

236236
gofmt: build/gofmt.diff
237-
@if [ -s $< ]; then echo 'gofmt found errors, run: gofmt -w $(ROOT_DIR)/runtime/*.go'; false; fi
237+
@if [ -s $< ]; then echo 'gofmt found errors, run: gofmt -w $(ROOT_DIR)/runtime/*.go'; cat build/gofmt.diff; false; fi
238238

239239
$(GOLINT_BIN):
240240
@go get -u golang.org/x/lint/golint

grumpy-runtime-src/grumpy_runtime/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,4 +12,4 @@
1212
# See the License for the specific language governing permissions and
1313
# limitations under the License.
1414

15-
__version__ = '0.2.2'
15+
__version__ = '0.3.0'

grumpy-runtime-src/runtime/complex_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -412,7 +412,7 @@ func TestComplexPos(t *testing.T) {
412412
cases := []invokeTestCase{
413413
{args: wrapArgs(complex(0, 0)), want: NewComplex(complex(0, 0)).ToObject()},
414414
{args: wrapArgs(complex(42, -0.1)), want: NewComplex(complex(42, -0.1)).ToObject()},
415-
{args: wrapArgs(complex(-1.2, 375E+2)), want: NewComplex(complex(-1.2, 37500)).ToObject()},
415+
{args: wrapArgs(complex(-1.2, 375e+2)), want: NewComplex(complex(-1.2, 37500)).ToObject()},
416416
{args: wrapArgs(complex(5, math.NaN())), want: NewComplex(complex(5, math.NaN())).ToObject()},
417417
{args: wrapArgs(complex(math.Inf(1), 0.618)), want: NewComplex(complex(math.Inf(1), 0.618)).ToObject()},
418418
}

grumpy-runtime-src/runtime/float_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -307,7 +307,7 @@ func TestFloatRepr(t *testing.T) {
307307
{args: wrapArgs(1e+6), want: NewStr("1000000.0").ToObject()},
308308
{args: wrapArgs(1e+15), want: NewStr("1000000000000000.0").ToObject()},
309309
{args: wrapArgs(1e+16), want: NewStr("1e+16").ToObject()},
310-
{args: wrapArgs(1E16), want: NewStr("1e+16").ToObject()},
310+
{args: wrapArgs(1e16), want: NewStr("1e+16").ToObject()},
311311
{args: wrapArgs(1e-6), want: NewStr("1e-06").ToObject()},
312312
{args: wrapArgs(math.Inf(1)), want: NewStr("inf").ToObject()},
313313
{args: wrapArgs(math.Inf(-1)), want: NewStr("-inf").ToObject()},

grumpy-runtime-src/setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@
4646
setup_requirements += ['pytest-runner']
4747

4848
COMMON_OPTIONS = dict(
49-
version='0.2.2',
49+
version='0.3.0',
5050
description="Grumpy Runtime & Transpiler",
5151
long_description=readme,
5252
author="Dylan Trotter et al.",
@@ -158,7 +158,7 @@ def run(self, *args, **kwargs):
158158
GRUMPY_RUNTIME_OPTIONS = dict(
159159
name='grumpy-runtime',
160160
requires=['grumpy_tools'],
161-
install_requires=['grumpy-tools>=0.2.2'],
161+
install_requires=['grumpy-tools>=0.3.0'],
162162
packages=find_packages(
163163
exclude=["*.tests", "*.tests.*", "tests.*", "tests"],
164164
),

grumpy-tools-src/grumpy_tools/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,4 +4,4 @@
44

55
__author__ = """Alan Justino et al."""
66
__email__ = 'alan.justino@yahoo.com.br'
7-
__version__ = '0.2.2'
7+
__version__ = '0.3.0'

grumpy-tools-src/setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@
5353

5454

5555
COMMON_OPTIONS = dict(
56-
version='0.2.2',
56+
version='0.3.0',
5757
description="Grumpy Runtime & Transpiler",
5858
long_description=readme,
5959
author="Dylan Trotter et al.",

0 commit comments

Comments
 (0)