Skip to content

Commit 89c8e17

Browse files
committed
Test
1 parent 2796822 commit 89c8e17

File tree

3 files changed

+10
-5
lines changed

3 files changed

+10
-5
lines changed

.travis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ python:
55
- "3.3"
66
- "3.4"
77
- "3.5"
8-
# - "pypy"
8+
- "pypy"
99

1010
# command to install dependencies
1111
install:

MANIFEST

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
# file GENERATED by distutils, do NOT edit
2+
setup.cfg
3+
setup.py
4+
flask_validator/__init__.py
5+
flask_validator/validator.py
6+
test/test_constraint.py

setup.py

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,9 @@
11
import re
2-
from setuptools import setup
3-
2+
from distutils.core import setup
43

54
setup(
65
name='Flask-Validator',
7-
version='0.4',
6+
version='0.5',
87
license='Mozilla Public License',
98
author='Jesus Roldan',
109
author_email='[email protected]',
@@ -20,7 +19,7 @@
2019
],
2120

2221
classifiers=[
23-
'Development Status :: 2 - Pre-Alpha',
22+
'Development Status :: 4 - Beta',
2423
'Environment :: Plugins',
2524
'Framework :: Flask',
2625
'Intended Audience :: Developers',

0 commit comments

Comments
 (0)