File tree 1 file changed +64
-0
lines changed
1 file changed +64
-0
lines changed Original file line number Diff line number Diff line change
1
+ name : sdist
2
+
3
+ on :
4
+ push :
5
+ branches :
6
+ - master
7
+ pull_request :
8
+ branches :
9
+ - master
10
+ - 1.2.x
11
+ - 1.3.x
12
+ paths-ignore :
13
+ - " doc/**"
14
+
15
+ jobs :
16
+ build :
17
+ runs-on : ubuntu-latest
18
+ timeout-minutes : 60
19
+ defaults :
20
+ run :
21
+ shell : bash -l {0}
22
+
23
+ strategy :
24
+ fail-fast : false
25
+ matrix :
26
+ python-version : ["3.7", "3.8", "3.9"]
27
+
28
+ steps :
29
+ - uses : actions/checkout@v2
30
+ with :
31
+ fetch-depth : 0
32
+
33
+ - name : Set up Python
34
+ uses : actions/setup-python@v2
35
+ with :
36
+ python-version : ${{ matrix.python-version }}
37
+
38
+ - name : Install dependencies
39
+ run : |
40
+ python -m pip install --upgrade pip setuptools wheel
41
+
42
+ # GH 39416
43
+ pip install numpy
44
+
45
+ - name : Build pandas sdist
46
+ run : |
47
+ pip list
48
+ python setup.py sdist --formats=gztar
49
+
50
+ - uses : conda-incubator/setup-miniconda@v2
51
+ with :
52
+ activate-environment : pandas-sdist
53
+ python-version : ${{ matrix.python-version }}
54
+
55
+ - name : Install pandas from sdist
56
+ run : |
57
+ conda list
58
+ python -m pip install dist/*.gz
59
+
60
+ - name : Import pandas
61
+ run : |
62
+ cd ..
63
+ conda list
64
+ python -c "import pandas; pandas.show_versions();"
You can’t perform that action at this time.
0 commit comments