Skip to content

Commit

Permalink
Initial commit
Browse files Browse the repository at this point in the history
  • Loading branch information
christopherbunn committed Aug 10, 2023
1 parent 8d7e235 commit 07713c2
Showing 1 changed file with 1 addition and 1 deletion.
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_\-]*" | 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 07713c2

Please sign in to comment.