From 180f0d4eb02e1f558ae63ba77006ed66f2081d0c Mon Sep 17 00:00:00 2001 From: frannerin Date: Mon, 4 Sep 2023 12:30:27 +0300 Subject: [PATCH] fixed binder conda env dep versions --- .binder/environment.yml | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/.binder/environment.yml b/.binder/environment.yml index 6f5f42d..d55882e 100644 --- a/.binder/environment.yml +++ b/.binder/environment.yml @@ -1,12 +1,13 @@ name: AlloViz channels: - conda-forge + - defaults dependencies: - - python>=3.9,<3.10 # 3.10 or above provokes numba import fail - - mdanalysis>=2.2,<2.3 # 2.3 or above fails with non-complying "formalcharges" last column of PDBs (GPCRmd PDBs) - - numpy<1.24 # 1.24 removed numpy.int and numpy.float needed for dynetan and PyInteraph2 - - ipywidgets<8 # 8 or above messes with nglview - - jupyterlab<4 # 4 or above messes with nglview + - python==3.9.* # 3.10 or above provokes numba import fail + - mdanalysis==2.2.* # 2.3 or above fails with non-complying "formalcharges" last column of PDBs (GPCRmd PDBs) + - numpy==1.23.* # 1.24 removed numpy.int and numpy.float needed for dynetan and PyInteraph2 + - ipywidgets==7.* # 8 or above messes with nglview + - jupyterlab==3.* # 4 or above messes with nglview - multiprocess - lazyasd - pandas