Commit e4b3360127c970612ad91f6c5fc149845ecd0553
1 parent
2bc46c06
Exists in
master
and in
1 other branch
- 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
setup.py
... | ... | @@ -18,7 +18,7 @@ setup( |
18 | 18 | url="https:USERNAME//bitbucket.org/USERNAME/perguntations.git", |
19 | 19 | packages=find_packages(), |
20 | 20 | include_package_data=True, # install files from MANIFEST.in |
21 | - python_requires='>=3.6.*', | |
21 | + python_requires='>=3.7.*', | |
22 | 22 | install_requires=[ |
23 | 23 | 'tornado', 'mistune', 'pyyaml', 'pygments', 'sqlalchemy', 'bcrypt'], |
24 | 24 | entry_points={ | ... | ... |