Skip to content

Commit

Permalink
Merge pull request #1952 from microsoft/bug/scipy1110
Browse files Browse the repository at this point in the history
Remove scipy 1.11.0 to fix the tests
  • Loading branch information
miguelgfierro authored Jun 30, 2023
2 parents b8e4f97 + 93503ac commit 2cc148f
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 9 deletions.
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
install_requires = [
"numpy>=1.19", # 1.19 required by tensorflow 2.6
"pandas>1.0.3,<2",
"scipy>=1.0.0,<2",
"scipy>=1.0.0,<2,!=1.11.0,!=1.11.1",
"tqdm>=4.31.1,<5",
"matplotlib>=2.2.2,<4",
"scikit-learn>=0.22.1,<1.0.3",
Expand All @@ -44,7 +44,7 @@
"jinja2>=2,<3.1",
"requests>=2.0.0,<3",
"cornac>=1.1.2,<1.15.2;python_version<='3.7'",
"cornac>=1.15.2,<2;python_version>='3.8'", # After 1.15.2, Cornac requires python 3.8
"cornac>=1.15.2,<2;python_version>='3.8'", # After 1.15.2, Cornac requires python 3.8
"retrying>=1.3.3",
"pandera[strategies]>=0.6.5", # For generating fake datasets
"scikit-surprise>=1.0.6",
Expand Down
14 changes: 7 additions & 7 deletions tests/ci/azureml_tests/test_groups.py
Original file line number Diff line number Diff line change
Expand Up @@ -207,9 +207,9 @@
"tests/unit/recommenders/models/test_deeprec_model.py::test_xdeepfm_component_definition",
"tests/unit/recommenders/models/test_deeprec_model.py::test_dkn_component_definition",
"tests/unit/recommenders/models/test_deeprec_model.py::test_dkn_item2item_component_definition",
"tests/unit/recommenders/models/test_deeprec_model.py::test_slirec_component_definition",
"tests/unit/recommenders/models/test_deeprec_model.py::test_nextitnet_component_definition",
"tests/unit/recommenders/models/test_deeprec_model.py::test_sum_component_definition",
# "tests/unit/recommenders/models/test_deeprec_model.py::test_slirec_component_definition", # FIXME: Issue #1953
# "tests/unit/recommenders/models/test_deeprec_model.py::test_nextitnet_component_definition", # FIXME: Issue #1953
# "tests/unit/recommenders/models/test_deeprec_model.py::test_sum_component_definition", # FIXME: Issue #1953
"tests/unit/recommenders/models/test_deeprec_model.py::test_lightgcn_component_definition",
"tests/unit/recommenders/models/test_rbm.py::test_sampling_funct",
"tests/unit/recommenders/models/test_rbm.py::test_train_param_init",
Expand All @@ -235,10 +235,10 @@
"tests/unit/recommenders/models/test_ncf_dataset.py::test_datafile_init_unsorted",
"tests/unit/recommenders/models/test_ncf_singlenode.py::test_predict",
"tests/unit/recommenders/models/test_ncf_dataset.py::test_datafile_missing_column",
"tests/unit/recommenders/models/test_sasrec_model.py::test_prepare_data",
"tests/unit/recommenders/models/test_sasrec_model.py::test_sampler",
"tests/unit/recommenders/models/test_sasrec_model.py::test_sasrec",
"tests/unit/recommenders/models/test_sasrec_model.py::test_ssept",
# "tests/unit/recommenders/models/test_sasrec_model.py::test_prepare_data", # FIXME: it takes too long to run
# "tests/unit/recommenders/models/test_sasrec_model.py::test_sampler", # FIXME: it takes too long to run
#"tests/unit/recommenders/models/test_sasrec_model.py::test_sasrec", # FIXME: it takes too long to run
# "tests/unit/recommenders/models/test_sasrec_model.py::test_ssept", # FIXME: it takes too long to run
],
"group_notebooks_gpu_001": [ # Total group time: 563.35s
"tests/unit/examples/test_notebooks_gpu.py::test_gpu_vm", # 0.76s (Always the first test to check the GPU works)
Expand Down

0 comments on commit 2cc148f

Please sign in to comment.