Skip to content

Commit

Permalink
fix wheel build
Browse files Browse the repository at this point in the history
  • Loading branch information
mojeto committed Sep 16, 2016
1 parent c28cd23 commit b728960
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 2 deletions.
2 changes: 2 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,8 @@ cache:
- $HOME/.cache/pip
- docs/node_modules/
- $HOME/docs/node_modules
before_install:
- pip install --upgrade pytest
install:
- |
if [ "$JSON_LIBRARY" = simplejson ]; then
Expand Down
5 changes: 4 additions & 1 deletion README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,12 @@ json-encoder
* It parse json float numbers into Decimal objects to prevent python float precision issues.


.. image:: https://travis-ci.org/NZME/json-encoder.svg?branch=master
.. image:: https://travis-ci.org/NZME/json-encoder.svg?branch=master&maxAge=259200
:target: https://travis-ci.org/NZME/json-encoder

.. image:: https://img.shields.io/pypi/v/json-encoder.svg?maxAge=259200
:target: https://pypi.python.org/pypi/json-encoder

Installation
------------

Expand Down
2 changes: 1 addition & 1 deletion json_encoder/__init__.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# -*- coding: utf-8 -*-
from __future__ import unicode_literals

__version__ = '0.4.3'
__version__ = '0.4.4'

_json_library = None

Expand Down
3 changes: 3 additions & 0 deletions setup.cfg
Original file line number Diff line number Diff line change
@@ -1,2 +1,5 @@
[aliases]
test=pytest

[wheel]
universal = 1

0 comments on commit b728960

Please sign in to comment.