From cc69945e6156ce28d1d8b959198535f25e04c80a Mon Sep 17 00:00:00 2001 From: UlrichB22 <97119703+UlrichB22@users.noreply.github.com> Date: Wed, 18 Jan 2023 23:15:47 +0100 Subject: [PATCH] Upgrade versions in setup.py --- docs/requirements.txt | 2 ++ setup.py | 18 +++++++++--------- 2 files changed, 11 insertions(+), 9 deletions(-) diff --git a/docs/requirements.txt b/docs/requirements.txt index 82e4c990f..c9755bee0 100644 --- a/docs/requirements.txt +++ b/docs/requirements.txt @@ -1,2 +1,4 @@ # see #1141 sphinx build failed with docutils==0.18 docutils>=0.18.1 +sphinx>=5.3.0 +sphinx-rtd-theme==1.1.1 diff --git a/setup.py b/setup.py index 63b9cd3e4..0611541fd 100644 --- a/setup.py +++ b/setup.py @@ -71,27 +71,27 @@ 'setuptools_scm', # magically cares for version and packaged files ], install_requires=[ - 'Babel==2.9.1', # Babel 2.10.1 breaks quickinstall.py #1239 + 'Babel<2.11.0', # internationalization support 'blinker>=1.1', # event signalling (e.g. for change notification trigger) - 'docutils<0.18', # reST markup processing, see #1141; sphinx 4.3.0 requires docutils<0.18,>=0.14 + 'docutils>=0.18.1', # reST markup processing 'Markdown>=3.4.1', # Markdown markup processing - 'Flask<2.0.0', # micro framework - 'Flask-Babel>=0.11.1', # i18n support + 'Flask<2.1.0', # micro framework + 'Flask-Babel<3.0.0', # i18n support 'Flask-Caching>=1.2.0', # caching support - 'Flask-Script>=2.0.5', # scripting support + 'Flask-Script==2.0.5', # scripting support 'Flask-Theme>=0.3.5', # theme support 'emeraldtree>=0.10.0', # xml processing 'feedgen==0.9.*', # Atom feed 'flatland>=0.8', # form handling - 'Jinja2<3.0.0', # template engine - 'markupsafe==2.0.1', # required by jinja2<3.0.0 + 'Jinja2<3.1.0', # template engine + 'markupsafe<=2.2.0', # safe html and xml 'pygments>=1.4', # src code / text file highlighting - 'Werkzeug<2.0.0', # wsgi toolkit + 'Werkzeug<2.2.0', # wsgi toolkit 'whoosh>=2.7.0', # needed for indexed search 'pdfminer3', # pdf -> text/plain conversion 'passlib>=1.6.0', # strong password hashing (1.6 needed for consteq) 'setuptools>=51', # dependency with setuptools_scm - 'sqlalchemy>=1.3.16', # used by sqla store TODO see: #1014 + 'sqlalchemy<2.0', # used by sqla store 'XStatic>=0.0.2', # support for static file pypi packages 'XStatic-Bootstrap==3.1.1.2', 'XStatic-Font-Awesome>=6.2.1.0',