File tree 2 files changed +12
-5
lines changed 2 files changed +12
-5
lines changed Original file line number Diff line number Diff line change 28
28
shell : bash -l {0}
29
29
env :
30
30
PYTHON_VERSION : ${{ matrix.python-version }}
31
- CHANS_DEV : " -c pyviz/label/dev -c conda-forge "
31
+ CHANS_DEV : " -c conda-forge -c pyviz/label/dev"
32
32
CHANS_OSX : " -c pyviz/label/dev -c conda-forge"
33
33
CHANS : " -c pyviz"
34
34
GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }}
Original file line number Diff line number Diff line change 30
30
'pandas>=0.25' ,
31
31
'param' ,
32
32
'retrying' ,
33
+ 'snappy' ,
33
34
]
34
35
35
36
if sys .platform == 'darwin' :
38
39
'pyarrow>=0.15,<2' ,
39
40
])
40
41
else :
41
- install_requires .extend ([
42
- 'numpy>=1.20' ,
43
- 'pyarrow>=3' ,
44
- ])
42
+ if sys .version_info [:2 ] == (3 , 6 ):
43
+ install_requires .extend ([
44
+ 'numpy<1.20' ,
45
+ 'pyarrow<3' ,
46
+ ])
47
+ else :
48
+ install_requires .extend ([
49
+ 'numpy>=1.20' ,
50
+ 'pyarrow<3' ,
51
+ ])
45
52
46
53
setup_args = dict (
47
54
name = 'spatialpandas' ,
You can’t perform that action at this time.
0 commit comments