diff --git a/.github/nglview-gha.yml b/.github/nglview-gha.yml index 21d72161..3454117f 100644 --- a/.github/nglview-gha.yml +++ b/.github/nglview-gha.yml @@ -21,9 +21,8 @@ dependencies: - matplotlib - moviepy - imageio - - pillow<11.2.1 + - pillow - numpy - - numpy<2.3.0 - rdkit - mdanalysis - mdtraj diff --git a/devtools/circleci/install_miniconda.sh b/devtools/circleci/install_miniconda.sh index daeb0df9..d9a1b2be 100644 --- a/devtools/circleci/install_miniconda.sh +++ b/devtools/circleci/install_miniconda.sh @@ -10,9 +10,9 @@ yum install -y \ # export PATH=/root/miniconda3/bin:$PATH export PATH=/opt/conda/bin/:$PATH conda update --yes --all -conda install --yes conda-build anaconda-client numpy<2.3 matplotlib +conda install --yes conda-build anaconda-client numpy matplotlib conda info -conda install --yes jupyter notebook nose numpy<2.3 coverage cython netcdf4 +conda install --yes jupyter notebook nose numpy coverage cython netcdf4 # pytraj pip install pytraj # mdanalysis diff --git a/devtools/conda-recipe/meta.yaml b/devtools/conda-recipe/meta.yaml index 70524b01..18bc1794 100644 --- a/devtools/conda-recipe/meta.yaml +++ b/devtools/conda-recipe/meta.yaml @@ -12,7 +12,7 @@ requirements: - traitlets run: - python - - numpy<2.3 + - numpy - ipywidgets - notebook >4.1 - jupyter diff --git a/devtools/outdated/nglview-jupyterlab.sh b/devtools/outdated/nglview-jupyterlab.sh index 95e854ad..cb13b39c 100644 --- a/devtools/outdated/nglview-jupyterlab.sh +++ b/devtools/outdated/nglview-jupyterlab.sh @@ -12,7 +12,7 @@ ipywidgets_version=7.1.2 echo "nglview root folder: $nglview_src" echo "Creating env $env" -conda create -n $env python=${python_version} numpy<2.3 nomkl -y +conda create -n $env python=${python_version} numpy nomkl -y source activate $env conda install setuptools -c conda-forge --force -y conda install notebook==${notebook_version} -c conda-forge -y diff --git a/environment.yml b/environment.yml index a1a0dce3..a5c54e41 100644 --- a/environment.yml +++ b/environment.yml @@ -18,7 +18,7 @@ dependencies: - coveralls # Scientific - - numpy<2.3 + - numpy - pandas - ase - parmed @@ -33,4 +33,4 @@ dependencies: - matplotlib - moviepy - imageio - - pillow<11.2.1 + - pillow diff --git a/pip-requirements-test.txt b/pip-requirements-test.txt index f3553d58..442f68b2 100644 --- a/pip-requirements-test.txt +++ b/pip-requirements-test.txt @@ -19,4 +19,4 @@ simpletraj matplotlib moviepy==0.2.2.11 imageio -pillow<11.2.1 +pillow diff --git a/setup.py b/setup.py index 43537d97..0e9d0fed 100644 --- a/setup.py +++ b/setup.py @@ -71,7 +71,7 @@ def pre_dist(): 'notebook>=7', 'jupyterlab>=3', 'jupyterlab_widgets', - 'numpy<2.3', + 'numpy', ], 'extras_require': { "simpletraj": ["simpletraj"],