Skip to content

Commit

Permalink
Closes Bears-R-Us#2922: Pin pandas<2.2.0 to avoid CI failures (Bears-…
Browse files Browse the repository at this point in the history
…R-Us#2923)

We were seeing [CI failures](https://github.com/Bears-R-Us/arkouda/actions/runs/7612943973/) on `groupby.argmin`

Rerunning the last commit to master causes the [same failures ](https://github.com/Bears-R-Us/arkouda/actions/runs/7588960978/)

I believe this is due to pandas `v2.2.0` which was released [this past friday](https://pandas.pydata.org/docs/dev/whatsnew/v2.2.0.html). This PR (closes Bears-R-Us#2922) pins pandas to `<2.2.0` to get the CI working again until we can dig in a bit more to find the root cause

Co-authored-by: Pierce Hayes <pierce314159@users.noreply.github.com>
stress-tess and Pierce Hayes authored Jan 22, 2024
1 parent b5f9f86 commit d5a9594
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion arkouda-env-dev.yml
Original file line number Diff line number Diff line change
@@ -5,7 +5,7 @@ channels:
dependencies:
- python>=3.8 # minimum 3.8
- numpy>=1.24.1
- pandas>=1.4.0
- pandas>=1.4.0,<2.2.0
- pyzmq>=20.0.0
- tabulate
- pyfiglet
2 changes: 1 addition & 1 deletion arkouda-env.yml
Original file line number Diff line number Diff line change
@@ -5,7 +5,7 @@ channels:
dependencies:
- python>=3.8 # minimum 3.8
- numpy>=1.24.1
- pandas>=1.4.0
- pandas>=1.4.0,<2.2.0
- pyzmq>=20.0.0
- tabulate
- pyfiglet
2 changes: 1 addition & 1 deletion pydoc/requirements.txt
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# dependencies
python>=3.8
numpy>=1.24.1
pandas>=1.4.0
pandas>=1.4.0,<2.2.0
pyzmq>=20.0.0
typeguard==2.10.0
tabulate
2 changes: 1 addition & 1 deletion pydoc/setup/REQUIREMENTS.md
Original file line number Diff line number Diff line change
@@ -19,7 +19,7 @@ The following python packages are required by the Arkouda client package.

- `python>=3.8`
- `numpy>=1.24.1`
- `pandas>=1.4.0`
- `pandas>=1.4.0,<2.2.0`
- `pyzmq>=20.0.0`
- `typeguard==2.10.0`
- `tabulate`
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
@@ -132,7 +132,7 @@
# https://packaging.python.org/en/latest/requirements.html
install_requires=[
'numpy>=1.24.1',
'pandas>=1.4.0',
'pandas>=1.4.0,<2.2.0',
'pyzmq>=20.0.0',
'typeguard==2.10.0',
'tabulate',

0 comments on commit d5a9594

Please sign in to comment.