Skip to content

Commit

Permalink
potentially fixes deps_diff
Browse files Browse the repository at this point in the history
  • Loading branch information
MichaelFu512 committed May 16, 2024
1 parent e02206c commit 03526fb
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ lime==0.2.0.1
matplotlib==3.9.0
matplotlib-inline==0.1.7
networkx==3.2.1
nlp-primitives==2.12.0
nlp-primitives==2.13.0
numpy==1.26.4
packaging==24.0
pandas==2.0.3
Expand Down
2 changes: 1 addition & 1 deletion evalml/tests/dependency_update_check/make_deps_diff.sh
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
reqs_list=$(python -c "import os; from evalml.utils import get_evalml_pip_requirements; print('\n'.join(get_evalml_pip_requirements(os.getcwd())))")
allow_list=$(echo ${reqs_list} | grep -oE "[a-zA-Z]+[a-zA-Z_\-]*" | grep -v "post" | tr "_" "-" | paste -d "|" -s -)
allow_list=$(echo ${reqs_list} | grep -oE "[a-zA-Z]+[a-zA-Z_\-]*" | grep -v "post" | paste -d "|" -s -)
echo "Allow list: ${allow_list}"
pip freeze | grep -v "evalml.git" | grep -E "${allow_list}" > "${DEPENDENCY_FILE_PATH}"

0 comments on commit 03526fb

Please sign in to comment.