Skip to content

Commit 8498fed

Browse files
committed
Bump to 0.2.2.
1 parent f843b4e commit 8498fed

File tree

4 files changed

+2
-38
lines changed

4 files changed

+2
-38
lines changed

TODO.md

Lines changed: 0 additions & 29 deletions
This file was deleted.

mutations/__init__.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1 @@
11
from .core import Mutation
2-
3-
__version__ = '0.2.1'

requirements.txt

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,7 @@
11
appnope==0.1.0
22
astroid==1.6.1
33
attrs==17.4.0
4-
autopep8==1.3.4
54
decorator==4.2.1
6-
ipdb==0.10.3
7-
ipython==6.2.1
85
ipython-genutils==0.2.0
96
isort==4.3.0
107
jedi==0.11.1

setup.py

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,8 @@
11
from distutils.core import setup
22

3-
import mutations
4-
53
setup(
64
name='mutations',
7-
version=mutations.__version__,
5+
version='0.2.2',
86
author='Omar Bohsali',
97
author_email='[email protected]',
108
packages=['mutations'],
@@ -13,5 +11,5 @@
1311
description='Encapsulate your business logic in command classes.',
1412
long_description="Mutations helps you split your complex business logic into command classes which are easier to test and maintain.",
1513
keywords=['business logic', 'django', 'fat models', 'thin models', 'input validation', 'commands', 'validation'],
16-
install_requires=[],
14+
install_requires=['six>=1.11.0'],
1715
)

0 commit comments

Comments
 (0)