From: Philipp Spitzer Date: Wed, 29 Nov 2023 22:35:04 +0000 (+0100) Subject: Prevent some updates. X-Git-Url: https://git.toastfreeware.priv.at/philipp/winterrodeln/wradmin.git/commitdiff_plain Prevent some updates. --- diff --git a/setup.py b/setup.py index 290eaa9..11903e6 100644 --- a/setup.py +++ b/setup.py @@ -8,17 +8,21 @@ setup( author_email='philipp.spitzer@winterrodeln.org', url='https://www.winterrodeln.org/', install_requires=[ - "SQLAlchemy>=0.5", + "SQLAlchemy==1.2.18", "lxml>=2.2", "Babel>=0.9", "paginate>=0.5.6", "wrpylib>=0.7.0", - "Flask", - "Flask-Login", + "Flask==1.1.4", + "Flask-Login==0.4.1", "Flask-Principal", "Flask-WTF", - "Flask-SQLAlchemy", + "Flask-SQLAlchemy==2.4.4", "mysqlclient", + "Jinja2<3.0.0", + "MarkupSafe==1.1.0", + "Werkzeug<1.0.0", + "itsdangerous==0.24", ], packages=['wradmin', 'wradmin.auth', 'wradmin.model', 'wradmin.controllers'], package_data={'wradmin': ['i18n/*/LC_MESSAGES/*.mo', 'templates/*', 'templates/auth/*', 'static/*']},