Skip to content

Commit

Permalink
Pin pandas version (#4315)
Browse files Browse the repository at this point in the history
* Pin pandas and add single 3.9 test to PR checks
  • Loading branch information
eccabay authored Sep 19, 2023
1 parent cf6bc94 commit 2586974
Show file tree
Hide file tree
Showing 6 changed files with 7 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/meta.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ outputs:
- setuptools ==58.0.4
run:
- numpy >=1.21.0
- pandas >=1.5.0
- pandas >=1.5.0, <2.1.0
- dask >=2022.2.0, !=2022.10.1
- scipy >=1.5.0
- scikit-learn >=1.3.0
Expand Down
2 changes: 2 additions & 0 deletions .github/workflows/linux_unit_tests_with_latest_deps.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,8 @@ jobs:
fail-fast: false
matrix:
include:
- python_version: "3.9"
command: 'git-test-automl'
- python_version: "3.8"
command: 'git-test-automl'
- python_version: "3.8"
Expand Down
2 changes: 1 addition & 1 deletion core-requirements.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
numpy>=1.21.0
pandas>=1.5.0
pandas>=1.5.0, <2.1.0
scipy>=1.5.0
scikit-learn>=1.3.0
scikit-optimize>=0.9.0
Expand Down
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
* Fixes
* Changes
* Updated ``split_data`` to call ``split_multiseries_data`` when passed stacked multiseries data :pr:`4312`
* Pinned pandas version under 2.1.0 :pr:`4315`
* Documentation Changes
* Removed LightGBM's excessive amount of warnings :pr:`4308`
* Testing Changes
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
black==23.9.1
catboost==1.2.1.1
catboost==1.2.2
category-encoders==2.5.1.post0
click==8.1.7
cloudpickle==2.2.1
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ license = {file = "LICENSE"}
requires-python = ">=3.8,<4"
dependencies = [
"numpy >= 1.21.0",
"pandas >= 1.5.0",
"pandas >= 1.5.0, < 2.1.0",
"scipy >= 1.5.0",
"scikit-learn >= 1.3.0",
"scikit-optimize >= 0.9.0",
Expand Down

0 comments on commit 2586974

Please sign in to comment.