Skip to content

Commit

Permalink
chore: update filters overrides
Browse files Browse the repository at this point in the history
  • Loading branch information
mayeut committed Nov 1, 2024
1 parent 1b348cb commit 518f27d
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 6 deletions.
10 changes: 5 additions & 5 deletions filters.json
Original file line number Diff line number Diff line change
Expand Up @@ -195,7 +195,7 @@
"pygame-3.6",
"python_box-3.8",
"immutables-3.8",
"python_snappy-3.6",
"python_snappy-3.8",
"lru_dict-3.8",
"patchelf-2.0",
"kaleido-2.0",
Expand Down Expand Up @@ -454,7 +454,7 @@
"isal-3.8",
"azure_cognitiveservices_speech-3.7",
"pyqtwebengine-3.8",
"tslearn-3.6",
"tslearn-3.8",
"tcod-3.8",
"simpleitk-3.8",
"gurobipy-3.8",
Expand Down Expand Up @@ -644,7 +644,7 @@
"nvidia_cuda_nvcc_cu12-3.0",
"fairseq-3.6",
"mxnet_mkl-2.0",
"tensorrt-3.6",
"tensorrt-3.8",
"qulacs-3.8",
"pytdigest-3.7",
"fastnumbers-3.7",
Expand All @@ -671,7 +671,7 @@
"tts-3.9",
"home_assistant_bluetooth-3.11",
"daal-2.0",
"parallel_ssh-3.0",
"parallel_ssh-3.6",
"clvm_tools_rs-3.8",
"sparse_dot_topn-3.8",
"wsaccel-3.9",
Expand Down Expand Up @@ -800,7 +800,7 @@
"hdrhistogram-3.6",
"xraylib-3.8",
"gpt4all-3.8",
"cobra-2.7",
"cobra-3.8",
"pylbfgs-3.6",
"pyhacrf_datamade-3.6"
]
6 changes: 5 additions & 1 deletion update_filters.py
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,11 @@ def _get_min_python(spec_sets: set[SpecifierSet]):
"cython-2.7": "cython-3.6", # no wheels below 3.6
"opencv_python-3.6": "opencv_python-3.7", # no wheels below 3.7
"visualdl-2.7": "visualdl-3.0", # pure wheel, no requires_python
"parallel_ssh-2.7": "parallel_ssh-3.0", # pure wheel, no requires_python
"parallel_ssh-2.7": "parallel_ssh-3.6", # pure wheel, no requires_python
"python_snappy-3.6": "python_snappy-3.8", # pure wheel, no requires_python
"tslearn-3.6": "tslearn-3.8", # pure wheel, no requires_python
"tensorrt-3.6": "tensorrt-3.8", # meta-packages, no requires_python
"cobra-2.7": "cobra-3.8", # pure wheel, no requires_python
}
return overrides.get(result, result)

Expand Down

0 comments on commit 518f27d

Please sign in to comment.