Skip to content

Commit 12cf61c

Browse files
committed
Use nightly pandas builds again
yolo
1 parent 54a5780 commit 12cf61c

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

.github/workflows/test.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,14 +10,17 @@ jobs:
1010
uses: actions/setup-python@v2
1111
with:
1212
python-version: 3.8
13+
- name: Upgrade pip
14+
run: |
15+
pip install pip --upgrade
1316
- name: Install dependencies
1417
run: |
1518
pip install -r requirements.txt
1619
- name: Install dataframe libraries
1720
run: |
1821
pip install ray git+https://github.com/modin-project/modin
1922
pip install vaex # use stable as no nightly builds and long build time
20-
pip install pandas --no-deps --ignore-installed # use stable as erroneous nightly builds and long build time
23+
pip install --pre --extra-index https://pypi.anaconda.org/scipy-wheels-nightly/simple pandas --ignore-installed -
2124
- name: Run tests
2225
run: |
2326
pytest tests/ -v --ci

0 commit comments

Comments
 (0)