Commit e4b3360127c970612ad91f6c5fc149845ecd0553

Authored by Miguel Barão
1 parent 2bc46c06
Exists in master and in 1 other branch dev

- fix minimum python version requirement.

- version bump to 2019.09.dev1
Showing 2 changed files with 2 additions and 2 deletions   Show diff stats
perguntations/__init__.py
@@ -32,7 +32,7 @@ proof of submission and for review. @@ -32,7 +32,7 @@ proof of submission and for review.
32 ''' 32 '''
33 33
34 APP_NAME = 'perguntations' 34 APP_NAME = 'perguntations'
35 -APP_VERSION = '2019.06.dev1' 35 +APP_VERSION = '2019.09.dev1'
36 APP_DESCRIPTION = __doc__ 36 APP_DESCRIPTION = __doc__
37 37
38 __author__ = 'Miguel Barão' 38 __author__ = 'Miguel Barão'
@@ -18,7 +18,7 @@ setup( @@ -18,7 +18,7 @@ setup(
18 url="https:USERNAME//bitbucket.org/USERNAME/perguntations.git", 18 url="https:USERNAME//bitbucket.org/USERNAME/perguntations.git",
19 packages=find_packages(), 19 packages=find_packages(),
20 include_package_data=True, # install files from MANIFEST.in 20 include_package_data=True, # install files from MANIFEST.in
21 - python_requires='>=3.6.*', 21 + python_requires='>=3.7.*',
22 install_requires=[ 22 install_requires=[
23 'tornado', 'mistune', 'pyyaml', 'pygments', 'sqlalchemy', 'bcrypt'], 23 'tornado', 'mistune', 'pyyaml', 'pygments', 'sqlalchemy', 'bcrypt'],
24 entry_points={ 24 entry_points={