Skip to content

Commit

Permalink
0.0.38 2015-05-12 ::
Browse files Browse the repository at this point in the history
Corrected error in .travis.yml.
  • Loading branch information
jcrmatos committed May 12, 2015
1 parent 0bc3e9e commit 262c186
Show file tree
Hide file tree
Showing 5 changed files with 17 additions and 6 deletions.
9 changes: 5 additions & 4 deletions .travis.yml
Expand Up @@ -2,13 +2,14 @@ language: python
python:
- "2.7"
- "3.4"
- "pypy"
#- "pypy3"
allow_failures:
- "pypy"
#- "pypy3"
before_install: pip install pytest-cov
install:
- "if [ $TRAVIS_PYTHON_VERSION != pypy ]; then pip install -r requirements.txt ; fi"
- "if [ $TRAVIS_PYTHON_VERSION -eq pypy ]; then pip install pypy-dev ; fi"
- "if [ $TRAVIS_PYTHON_VERSION -eq pypy ]; then pip install git+https://bitbucket.org/pypy/numpy.git ; fi"
- "if [ $TRAVIS_PYTHON_VERSION = pypy ]; then pip install pypy-dev ; fi"
- "if [ $TRAVIS_PYTHON_VERSION = pypy ]; then pip install git+https://bitbucket.org/pypy/numpy.git ; fi"
script: py.test --cov-report term-missing --cov tai -v test
notifications:
email:
Expand Down
5 changes: 5 additions & 0 deletions ChangeLog.rst
@@ -1,3 +1,8 @@
0.0.38 2015-05-12 ::

Corrected error in .travis.yml.

0.0.37 2015-05-12 ::

Corrected error in .travis.yml.
Expand Down
2 changes: 1 addition & 1 deletion appinfo.py
Expand Up @@ -29,7 +29,7 @@


APP_NAME = 'tai'
APP_VERSION = '0.0.37'
APP_VERSION = '0.0.38'
APP_LICENSE = 'GNU General Public License v2 or later (GPLv2+)'
APP_AUTHOR = 'Joao Carlos Roseta Matos'
APP_EMAIL = 'jcrmatos@gmail.com'
Expand Down
5 changes: 5 additions & 0 deletions tai/ChangeLog.txt
@@ -1,3 +1,8 @@
0.0.38 2015-05-12 ::

Corrected error in .travis.yml.


0.0.37 2015-05-12 ::

Corrected error in .travis.yml.
Expand Down
2 changes: 1 addition & 1 deletion tai/appinfo.py
Expand Up @@ -29,7 +29,7 @@


APP_NAME = 'tai'
APP_VERSION = '0.0.37'
APP_VERSION = '0.0.38'
APP_LICENSE = 'GNU General Public License v2 or later (GPLv2+)'
APP_AUTHOR = 'Joao Carlos Roseta Matos'
APP_EMAIL = 'jcrmatos@gmail.com'
Expand Down

0 comments on commit 262c186

Please sign in to comment.