|
47 | 47 | ],
|
48 | 48 | },
|
49 | 49 | {
|
50 |
| - "description": "Disable numpy updates for Python <= 3.10 by matching the python_version marker.", |
51 |
| - "matchFileNames": ["pyproject.toml", "requirements.txt"], |
| 50 | + "description": "Disable numpy updates for python 3.10 in requirements.txt", |
52 | 51 | "matchPackageNames": ["numpy"],
|
53 |
| - "matchDepVersions": ["/(python_version == '3\\.10|python_version <= '3\\.9)/"], |
| 52 | + "matchCurrentVersion": "<=2.2.6", |
| 53 | + "enabled": false |
| 54 | + }, |
| 55 | + { |
| 56 | + "description": "Disable numpy updates for python <=3.9 in requirements.txt", |
| 57 | + "matchPackageNames": ["numpy"], |
| 58 | + "matchCurrentVersion": "<=2.0.2", |
| 59 | + "enabled": false |
| 60 | + }, |
| 61 | + { |
| 62 | + "description": "Disable numpy updates for python 3.10 in pyproject.toml", |
| 63 | + "matchFileNames": ["pyproject.toml"], |
| 64 | + "matchPackageNames": ["numpy"], |
| 65 | + "matchCurrentValue": ">=1.24.4, <=2.2.6", |
| 66 | + "enabled": false |
| 67 | + }, |
| 68 | + { |
| 69 | + "description": "Disable numpy updates for python <=3.9 in pyproject.toml", |
| 70 | + "matchFileNames": ["pyproject.toml"], |
| 71 | + "matchPackageNames": ["numpy"], |
| 72 | + "matchCurrentValue": ">=1.24.4, <=2.0.2", |
54 | 73 | "enabled": false
|
55 | 74 | }
|
56 | 75 | ],
|
|
0 commit comments