File tree Expand file tree Collapse file tree 1 file changed +4
-1
lines changed Expand file tree Collapse file tree 1 file changed +4
-1
lines changed Original file line number Diff line number Diff line change @@ -10,14 +10,17 @@ jobs:
10
10
uses : actions/setup-python@v2
11
11
with :
12
12
python-version : 3.8
13
+ - name : Upgrade pip
14
+ run : |
15
+ pip install pip --upgrade
13
16
- name : Install dependencies
14
17
run : |
15
18
pip install -r requirements.txt
16
19
- name : Install dataframe libraries
17
20
run : |
18
21
pip install ray git+https://github.com/modin-project/modin
19
22
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 -
21
24
- name : Run tests
22
25
run : |
23
26
pytest tests/ -v --ci
You can’t perform that action at this time.
0 commit comments