From 54957a791dec9fa40111cf20ddf7311160bf1002 Mon Sep 17 00:00:00 2001 From: SecretSettler Date: Tue, 12 Dec 2023 19:46:12 +0000 Subject: [PATCH] Modify setup.py for successful installation --- setup.py | 40 +++++++++++++++++++++------------------- 1 file changed, 21 insertions(+), 19 deletions(-) diff --git a/setup.py b/setup.py index ffb1e2f..1d273b1 100644 --- a/setup.py +++ b/setup.py @@ -2,25 +2,27 @@ from d2lbook import __version__ requirements = [ - 'jupyter', - 'regex', - 'sphinx>=2.2.1', - 'recommonmark', - 'nbformat', - 'nbconvert', - 'sphinxcontrib-bibtex<2.0.0', - 'pybtex-apa-style', - 'mu-notedown', - 'mxtheme>=0.3.16', - 'sphinxcontrib-svg2pdfconverter', - 'numpydoc', - 'awscli', - 'gitpython', - 'sphinx_autodoc_typehints', - 'astor', - 'yapf', - 'fasteners', - 'isort' + 'jupyter', + 'regex', + 'sphinx==5.2.0', + 'recommonmark', + 'nbformat', + 'nbconvert', + 'sphinxcontrib-bibtex<2.0.0', + 'pybtex-apa-style', + 'mu-notedown', + 'mxtheme>=0.3.16', + 'sphinxcontrib-svg2pdfconverter', + 'numpydoc', + 'awscli', + 'gitpython', + 'sphinx_autodoc_typehints==1.10.1', + 'astor', + 'yapf', + 'fasteners', + 'isort', + 'anyio==3.7.1', + 'h11==0.12.0' ] setup(