Skip to content

Commit

Permalink
New release on 2018-01-20 22:21:39.637849: 1.1.3
Browse files Browse the repository at this point in the history
  • Loading branch information
Ilja Orlovs committed Jan 20, 2018
1 parent 6f583e2 commit 515af91
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 6 deletions.
1 change: 1 addition & 0 deletions requirements/develop.txt
Expand Up @@ -4,5 +4,6 @@ pytest-pep8>=1.0.6
pytest-runner>=3.0
python-coveralls>=2.9.1
bump2version>=0.5.7
m2r>=0.1.12

-r production.txt
2 changes: 1 addition & 1 deletion setup.cfg
@@ -1,5 +1,5 @@
[bumpversion]
current_version = 1.1.2
current_version = 1.1.3
commit = True
tag = True

Expand Down
10 changes: 6 additions & 4 deletions setup.py
Expand Up @@ -3,17 +3,19 @@
from codecs import open
from setuptools import setup

import m2r

THIS_DIR = os.path.dirname(os.path.abspath(__file__))

with open(os.path.join(THIS_DIR, 'README.md'), encoding='utf-8') as fobj:
README_md = fobj.read()
README = m2r.convert(fobj.read())

setup(
name='sqlalchemy_fsm',
packages=['sqlalchemy_fsm'],
py_modules=['sqlalchemy_fsm'],
description='Finite state machine field for sqlalchemy',
long_description=README_md,
long_description=README,
author='Peter & Ilja',
author_email='ilja@wise.fish',
license='MIT',
Expand All @@ -27,9 +29,9 @@
'Topic :: Database',
],
keywords='sqlalchemy finite state machine fsm',
version='1.1.2',
version='1.1.3',
url='https://github.com/VRGhost/sqlalchemy-fsm',
install_requires=['SQLAlchemy>=1.1.2'],
install_requires=['SQLAlchemy>=1.1.3'],
setup_requires=['pytest-runner'],
tests_require=['pytest']
)
2 changes: 1 addition & 1 deletion sqlalchemy_fsm/__init__.py
Expand Up @@ -12,4 +12,4 @@
is_current,
)

__version__ = '1.1.2'
__version__ = '1.1.3'

0 comments on commit 515af91

Please sign in to comment.