diff --git a/docs/source/conf.py b/docs/source/conf.py index 5a411a0..3190dc9 100644 --- a/docs/source/conf.py +++ b/docs/source/conf.py @@ -4,7 +4,7 @@ sys.path.insert(0, os.path.abspath("../..")) project = "Scarf" -copyright = "2023, Parashar Dhapola" +copyright = "2020-2024, Parashar Dhapola" author = "Parashar Dhapola" extensions = [ @@ -53,7 +53,6 @@ "path_to_docs": "docs/source", "use_download_button": True, "use_fullscreen_button": True, - "single_page": False, "home_page_in_toc": True, "extra_navbar": "", "logo_only": True, @@ -64,9 +63,9 @@ htmlhelp_basename = "ScarfDoc" man_pages = [(master_doc, "scarf", "Scarf Documentation", [author], 1)] -execution_allow_errors = True -jupyter_execute_notebooks = "auto" -execution_timeout = 5000 +nb_execution_allow_errors = True +nb_execution_mode = "auto" +nb_execution_timeout = 5000 import matplotlib diff --git a/setup.py b/setup.py index a8d0d53..2824aaa 100644 --- a/setup.py +++ b/setup.py @@ -40,13 +40,6 @@ def run(self): core_requirements = read_lines('requirements.txt') extra_requirements = read_lines('requirements_extra.txt') - install_requires = ( - ["pybind11"] - + [x.strip() for x in open("requirements.txt")] - + ["dask[array]", "dask[dataframe]"] - ) - dependency_links = [] - setup( name="scarf", version=version,