Skip to content

Commit

Permalink
Fix jeffknupp#360 - fix dependencies to older versions
Browse files Browse the repository at this point in the history
  • Loading branch information
clach04 committed Feb 8, 2024
1 parent 715500f commit a3013c1
Showing 1 changed file with 8 additions and 4 deletions.
12 changes: 8 additions & 4 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -42,11 +42,15 @@ def run_tests(self):
author='Jeff Knupp',
tests_require=['pytest', 'pytest-cov', 'pytest-flask'],
install_requires=[
'Flask>=1.0.3',
'Flask-SQLAlchemy==2.4.0',
'SQLAlchemy==1.3.3',
'Flask-Admin>=1.5.3',
'itsdangerous==2.0.1', # old json
'jinja2==3.0.3', # jinja2 < 3.1.0 for jinja2.escape - alternative newer flask
'Werkzeug==1.0.1',
'Flask==1.1.2',
'Flask-SQLAlchemy==2.4.4',
'SQLAlchemy==1.3.20',
'Flask-Admin>=1.5.37',
'Flask-HTTPAuth>=3.2.4',
'colorama',
],
cmdclass={'test': PyTest},
author_email='[email protected]',
Expand Down

0 comments on commit a3013c1

Please sign in to comment.