Skip to content

Commit 43f3023

Browse files
committed
update interpret-community to ml-wrappers 0.6.0
1 parent 71f4f38 commit 43f3023

File tree

3 files changed

+4
-5
lines changed

3 files changed

+4
-5
lines changed

.github/workflows/CI-python.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -66,6 +66,7 @@ jobs:
6666
shell: bash -l {0}
6767
run: |
6868
pip install -r requirements-test.txt
69+
pip install https://publictestdatasets.blob.core.windows.net/packages/pypi/ml-wrappers/ml_wrappers-0.6.0-py3-none-any.whl
6970
- name: Test with pytest
7071
shell: bash -l {0}
7172
run: |

devops/templates/create-env-step-template.yml

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -19,15 +19,13 @@ steps:
1919

2020
- bash: |
2121
source activate ${{parameters.condaEnv}}
22-
conda install --yes --quiet --name ${{parameters.condaEnv}} "numpy<1.24.0" -c conda-forge
23-
conda install --yes --quiet --name ${{parameters.condaEnv}} pytorch torchvision cpuonly -c pytorch
22+
conda install --yes --quiet --name ${{parameters.condaEnv}} pytorch torchvision cpuonly -c pytorch -c conda-forge --strict-channel-priority
2423
displayName: Install Anaconda packages
2524
condition: ne(variables['Agent.OS'], 'Darwin')
2625
2726
- bash: |
2827
source activate ${{parameters.condaEnv}}
29-
conda install --yes --quiet --name ${{parameters.condaEnv}} "numpy<1.24.0" -c conda-forge
30-
conda install --yes --quiet --name ${{parameters.condaEnv}} pytorch torchvision -c pytorch
28+
conda install --yes --quiet --name ${{parameters.condaEnv}} pytorch torchvision -c pytorch -c conda-forge --strict-channel-priority
3129
displayName: Install Anaconda packages on MacOS, which should not include cpuonly according to official docs
3230
condition: eq(variables['Agent.OS'], 'Darwin')
3331

python/setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@
3939
'numpy',
4040
'pandas',
4141
'scipy',
42-
'ml-wrappers~=0.5.4',
42+
'ml-wrappers',
4343
'scikit-learn',
4444
'packaging',
4545
'interpret-core>=0.1.20, <0.5.0; python_version <= "3.7"',

0 commit comments

Comments
 (0)