We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 54a5780 commit 12cf61cCopy full SHA for 12cf61c
.github/workflows/test.yml
@@ -10,14 +10,17 @@ jobs:
10
uses: actions/setup-python@v2
11
with:
12
python-version: 3.8
13
+ - name: Upgrade pip
14
+ run: |
15
+ pip install pip --upgrade
16
- name: Install dependencies
17
run: |
18
pip install -r requirements.txt
19
- name: Install dataframe libraries
20
21
pip install ray git+https://github.com/modin-project/modin
22
pip install vaex # use stable as no nightly builds and long build time
- 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 -
24
- name: Run tests
25
26
pytest tests/ -v --ci
0 commit comments