Skip to content

Commit

Permalink
Merge pull request #9 from mplanchard/development
Browse files Browse the repository at this point in the history
Dev -> Master (0.3.0)
  • Loading branch information
mplanchard authored Sep 6, 2019
2 parents cc98a0a + 24d127d commit 5d9bbb0
Show file tree
Hide file tree
Showing 8 changed files with 381 additions and 249 deletions.
60 changes: 60 additions & 0 deletions .gitlab-ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,60 @@
image: python:3

stages:
- test

test-2.7:
image: python:2.7
stage: test
script:
- pip install tox
- tox -e py27

test-3.4:
image: python:3.4
stage: test
script:
- pip install tox
- tox -e py34

test-3.5-marshmallow-2:
image: python:3.5
stage: test
script:
- pip install tox
- tox -e py35-marshmallow2

test-3.5-marshmallow-3:
image: python:3.5
stage: test
script:
- pip install tox
- tox -e py35-marshmallow3

test-3.6-marshmallow-2:
image: python:3.6
stage: test
script:
- pip install tox
- tox -e py36-marshmallow2

test-3.6-marshmallow-2:
image: python:3.6
stage: test
script:
- pip install tox
- tox -e py36-marshmallow3

test-3.7-marshmallow-2:
image: python:3.7
stage: test
script:
- pip install tox
- tox -e py37-marshmallow2

test-3.7-marshmallow-3:
image: python:3.7
stage: test
script:
- pip install tox
- tox -e py37-marshmallow3
14 changes: 0 additions & 14 deletions .travis.yml

This file was deleted.

9 changes: 6 additions & 3 deletions falcon_marshmallow/_version.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,11 @@
``setup.py egg_info`` command when creating distributions.
"""
from __future__ import (
absolute_import, division, print_function, unicode_literals
absolute_import,
division,
print_function,
unicode_literals,
)

__version_info__ = (0, 2, 0)
__version__ = '.'.join([str(ver) for ver in __version_info__])
__version_info__ = (0, 3, 0)
__version__ = ".".join([str(ver) for ver in __version_info__])
Loading

0 comments on commit 5d9bbb0

Please sign in to comment.