From 515af91e699931d1a5d011db7ee5bf1d11afc0b6 Mon Sep 17 00:00:00 2001 From: Ilja Orlovs Date: Sat, 20 Jan 2018 22:21:39 +0000 Subject: [PATCH] New release on 2018-01-20 22:21:39.637849: 1.1.3 --- requirements/develop.txt | 1 + setup.cfg | 2 +- setup.py | 10 ++++++---- sqlalchemy_fsm/__init__.py | 2 +- 4 files changed, 9 insertions(+), 6 deletions(-) diff --git a/requirements/develop.txt b/requirements/develop.txt index 1874445b..26461170 100644 --- a/requirements/develop.txt +++ b/requirements/develop.txt @@ -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 \ No newline at end of file diff --git a/setup.cfg b/setup.cfg index 33ada543..44313639 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 1.1.2 +current_version = 1.1.3 commit = True tag = True diff --git a/setup.py b/setup.py index 9a52d384..05bfa71b 100644 --- a/setup.py +++ b/setup.py @@ -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', @@ -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'] ) \ No newline at end of file diff --git a/sqlalchemy_fsm/__init__.py b/sqlalchemy_fsm/__init__.py index 964b00b5..81d90b78 100644 --- a/sqlalchemy_fsm/__init__.py +++ b/sqlalchemy_fsm/__init__.py @@ -12,4 +12,4 @@ is_current, ) -__version__ = '1.1.2' \ No newline at end of file +__version__ = '1.1.3' \ No newline at end of file