Skip to content

Commit dfc95fa

Browse files
authored
doc: fix GA badge (#588)
1 parent dac0368 commit dfc95fa

File tree

6 files changed

+11
-11
lines changed

6 files changed

+11
-11
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
[![PyPI version](https://badge.fury.io/py/pylops.svg)](https://badge.fury.io/py/pylops)
55
[![Anaconda-Server Badge](https://anaconda.org/conda-forge/pylops/badges/version.svg)](https://anaconda.org/conda-forge/pylops)
66
[![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)
7-
[![GithubAction Status](https://github.com/mrava87/pylops/actions/workflows/build.yaml/badge.svg)](https://github.com/mrava87/pylops/actions/workflows/build.yaml)
7+
[![GithubAction Status](https://github.com/PyLops/pylops/actions/workflows/build.yaml/badge.svg?branch=dev)](https://github.com/PyLops/pylops/actions/workflows/build.yaml)
88
[![Documentation Status](https://readthedocs.org/projects/pylops/badge/?version=stable)](https://pylops.readthedocs.io/en/stable/?badge=stable)
99
[![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)
1010
[![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)

environment-dev-arm.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@ channels:
77
dependencies:
88
- python>=3.6.4
99
- pip
10-
- numpy>=1.21.0
11-
- scipy>=1.4.0
10+
- numpy>=1.21.0,<2.0.0
11+
- scipy>=1.4.0,<=1.13.0
1212
- pytorch>=1.2.0
1313
- cpuonly
1414
- pyfftw

environment-dev.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@ channels:
77
dependencies:
88
- python>=3.6.4
99
- pip
10-
- numpy>=1.21.0
11-
- scipy>=1.4.0
10+
- numpy>=1.21.0,<2.0.0
11+
- scipy>=1.4.0,<=1.13.0
1212
- pytorch>=1.2.0
1313
- cpuonly
1414
- pyfftw

environment.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,5 +3,5 @@ channels:
33
- defaults
44
dependencies:
55
- python>=3.6.4
6-
- numpy>=1.21.0
7-
- scipy>=1.4.0
6+
- numpy>=1.21.0,<2.0.0
7+
- scipy>=1.4.0,<=1.13.0

pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,8 +30,8 @@ classifiers = [
3030
"Topic :: Scientific/Engineering :: Mathematics",
3131
]
3232
dependencies = [
33-
"numpy >= 1.21.0",
34-
"scipy >= 1.4.0",
33+
"numpy >= 1.21.0 , < 2.0.0",
34+
"scipy >= 1.4.0 , <= 1.13.0",
3535
]
3636
dynamic = ["version"]
3737

requirements-dev.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
numpy>=1.21.0
2-
scipy>=1.4.0
1+
numpy>=1.21.0,<2.0.0
2+
scipy>=1.4.0,<=1.13.0
33
--extra-index-url https://download.pytorch.org/whl/cpu
44
torch>=1.2.0
55
numba

0 commit comments

Comments
 (0)