diff --git a/README.md b/README.md index 8ee6ff83..fd7a1670 100644 --- a/README.md +++ b/README.md @@ -4,7 +4,7 @@ [![PyPI version](https://badge.fury.io/py/pylops.svg)](https://badge.fury.io/py/pylops) [![Anaconda-Server Badge](https://anaconda.org/conda-forge/pylops/badges/version.svg)](https://anaconda.org/conda-forge/pylops) [![AzureDevOps Status](https://dev.azure.com/matteoravasi/PyLops/_apis/build/status/PyLops.pylops?branchName=dev)](https://dev.azure.com/matteoravasi/PyLops/_build/latest?definitionId=9&branchName=dev) -[![GithubAction Status](https://github.com/mrava87/pylops/actions/workflows/build.yaml/badge.svg)](https://github.com/mrava87/pylops/actions/workflows/build.yaml) +[![GithubAction Status](https://github.com/PyLops/pylops/actions/workflows/build.yaml/badge.svg?branch=dev)](https://github.com/PyLops/pylops/actions/workflows/build.yaml) [![Documentation Status](https://readthedocs.org/projects/pylops/badge/?version=stable)](https://pylops.readthedocs.io/en/stable/?badge=stable) [![Codacy Badge](https://app.codacy.com/project/badge/Grade/17fd60b4266347d8890dd6b64f2c0807)](https://www.codacy.com/gh/PyLops/pylops/dashboard?utm_source=github.com&utm_medium=referral&utm_content=PyLops/pylops&utm_campaign=Badge_Grade) [![Codacy Badge](https://app.codacy.com/project/badge/Coverage/17fd60b4266347d8890dd6b64f2c0807)](https://www.codacy.com/gh/PyLops/pylops/dashboard?utm_source=github.com&utm_medium=referral&utm_content=PyLops/pylops&utm_campaign=Badge_Coverage) diff --git a/environment-dev-arm.yml b/environment-dev-arm.yml index 4e666aab..466d4c62 100755 --- a/environment-dev-arm.yml +++ b/environment-dev-arm.yml @@ -7,8 +7,8 @@ channels: dependencies: - python>=3.6.4 - pip - - numpy>=1.21.0 - - scipy>=1.4.0 + - numpy>=1.21.0,<2.0.0 + - scipy>=1.4.0,<=1.13.0 - pytorch>=1.2.0 - cpuonly - pyfftw diff --git a/environment-dev.yml b/environment-dev.yml index f7d01a82..8f18dc48 100755 --- a/environment-dev.yml +++ b/environment-dev.yml @@ -7,8 +7,8 @@ channels: dependencies: - python>=3.6.4 - pip - - numpy>=1.21.0 - - scipy>=1.4.0 + - numpy>=1.21.0,<2.0.0 + - scipy>=1.4.0,<=1.13.0 - pytorch>=1.2.0 - cpuonly - pyfftw diff --git a/environment.yml b/environment.yml index 31f5c88a..ce64365c 100755 --- a/environment.yml +++ b/environment.yml @@ -3,5 +3,5 @@ channels: - defaults dependencies: - python>=3.6.4 - - numpy>=1.21.0 - - scipy>=1.4.0 + - numpy>=1.21.0,<2.0.0 + - scipy>=1.4.0,<=1.13.0 diff --git a/pyproject.toml b/pyproject.toml index 9c338a48..7c3f7cc2 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -30,8 +30,8 @@ classifiers = [ "Topic :: Scientific/Engineering :: Mathematics", ] dependencies = [ - "numpy >= 1.21.0", - "scipy >= 1.4.0", + "numpy >= 1.21.0 , < 2.0.0", + "scipy >= 1.4.0 , <= 1.13.0", ] dynamic = ["version"] diff --git a/requirements-dev.txt b/requirements-dev.txt index 35d7d07e..6ec1e0bb 100644 --- a/requirements-dev.txt +++ b/requirements-dev.txt @@ -1,5 +1,5 @@ -numpy>=1.21.0 -scipy>=1.4.0 +numpy>=1.21.0,<2.0.0 +scipy>=1.4.0,<=1.13.0 --extra-index-url https://download.pytorch.org/whl/cpu torch>=1.2.0 numba