From 8ca3967565bf7f75ef0534755d83c0b58703743e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Dieter=20Werthm=C3=BCller?= Date: Fri, 21 Jun 2024 09:07:11 +0200 Subject: [PATCH] Re-enable arrow-key navigation; numpy<2 (#327) --- docs/conf.py | 1 + setup.py | 1 + 2 files changed, 2 insertions(+) diff --git a/docs/conf.py b/docs/conf.py index 24d6c651..caeb9329 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -81,6 +81,7 @@ {"name": "Gallery", "url": "https://emsig.xyz/emg3d-gallery/gallery"}, {"name": "emsig", "url": "https://emsig.xyz"}, ], + 'navigation_with_keys': True, # "use_edit_page_button": True, } diff --git a/setup.py b/setup.py index 2de0a1de..d7a0d3ca 100644 --- a/setup.py +++ b/setup.py @@ -29,6 +29,7 @@ python_requires=">=3.9", install_requires=[ "scipy>=1.9", + "numpy<2.0", "numba>=0.53", "empymod>=2.3.0", ],