Skip to content

Commit

Permalink
Merge branch 'release/0.1.1'
Browse files Browse the repository at this point in the history
  • Loading branch information
alexhayes committed Nov 1, 2016
2 parents a37429a + 7b6b470 commit 8998532
Show file tree
Hide file tree
Showing 5 changed files with 21 additions and 8 deletions.
9 changes: 5 additions & 4 deletions .travis.yml
Expand Up @@ -17,14 +17,15 @@ matrix:
- python: pypy
env: TOXENV=pypy

# pypy
# pypy3
- python: pypy3
env: TOXENV=pypy3

allow_failures:
- python: pypy
- python: pypy3

install:
- pip install tox
- pip install codecov
- pip install Django==1.10
- pip install -r requirements/test.txt
- pip install -r requirements/docs.txt

Expand Down
8 changes: 8 additions & 0 deletions CHANGELOG.md
@@ -1,3 +1,11 @@
# Release 0.1.1 - Wednesday 2 November 08:02:07 AEDT 2016

- Fixed travis YAML file parse error
- Allow travis failures for pypy and pypy3
- Added pytest-cov
- Fixed pylint issue with __init__ import
- Cleaned up test requirements

# Release 0.1.0 - Wed Nov 2 07:55:01 EST 2016

- Initial release
Expand Down
2 changes: 1 addition & 1 deletion VERSION
@@ -1 +1 @@
0.1.0
0.1.1
6 changes: 5 additions & 1 deletion requirements/test.txt
@@ -1,4 +1,8 @@
-r default.txt

py==1.4.31
pytest==3.0.3
pytest>=3,<=4
pytest-cov>=2.4,<=3
pylint>=1.6,<=2
codecov
coverage
4 changes: 2 additions & 2 deletions schematics_xml/__init__.py
Expand Up @@ -10,7 +10,7 @@
'VersionInfo', ('major', 'minor', 'micro', 'releaselevel', 'serial'),
)

VERSION = VersionInfo(0, 1, 0, '', '')
VERSION = VersionInfo(0, 1, 1, '', '')
__version__ = '{0.major}.{0.minor}.{0.micro}{0.releaselevel}'.format(VERSION)
__author__ = 'Alex Hayes'
__contact__ = 'alex@alution.com'
Expand All @@ -19,4 +19,4 @@

# -eof meta-

from schematics_xml.models import XMLModel
from schematics_xml.models import XMLModel # pylint: disable=wrong-import-position

0 comments on commit 8998532

Please sign in to comment.