Skip to content

Commit

Permalink
Merge branch 'main' into 4266_msts_search
Browse files Browse the repository at this point in the history
  • Loading branch information
eccabay committed Aug 11, 2023
2 parents fddbd1c + b573631 commit 2f80d7d
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions docs/source/release_notes.rst
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ Release Notes
* Added support for pandas 2 :pr:`4216`
* Fixed bug where time series pipelines would fail due to MASE needing `y_train` when scoring :pr:`4258`
* Update s3 bucket for docs image :pr:`4260`
* Fix deps checker including any package with post in the name :pr:`4268`
* Changes
* Unpinned sktime version :pr:`4214`
* Bumped minimum lightgbm version to 4.0.0 for nullable type handling :pr:`4237`
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ packaging==23.1
pandas==2.0.3
plotly==5.15.0
pmdarima==2.0.3
pyzmq==25.1.0
pyzmq==25.1.1
scikit-learn==1.3.0
scikit-optimize==0.9.0
scipy==1.10.1
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_\-]*" | paste -d "|" -s -)
allow_list=$(echo ${reqs_list} | grep -oE "[a-zA-Z]+[a-zA-Z_\-]*" | grep -v "post" | tr "_" "-" | 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 2f80d7d

Please sign in to comment.