Skip to content

Commit

Permalink
doc: fix GA badge (#588)
Browse files Browse the repository at this point in the history
  • Loading branch information
mrava87 authored Jul 2, 2024
1 parent dac0368 commit dfc95fa
Show file tree
Hide file tree
Showing 6 changed files with 11 additions and 11 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down
4 changes: 2 additions & 2 deletions environment-dev-arm.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
4 changes: 2 additions & 2 deletions environment-dev.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
4 changes: 2 additions & 2 deletions environment.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"]

Expand Down
4 changes: 2 additions & 2 deletions requirements-dev.txt
Original file line number Diff line number Diff line change
@@ -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
Expand Down

0 comments on commit dfc95fa

Please sign in to comment.