File tree 2 files changed +5
-22
lines changed
2 files changed +5
-22
lines changed Original file line number Diff line number Diff line change 20
20
exclude :
21
21
- os : macos-latest
22
22
python-version : 3.6
23
+ - os : macos-latest
24
+ python-version : 3.8
23
25
timeout-minutes : 60
24
26
defaults :
25
27
run :
48
50
conda install -c pyviz "pyctdev>=0.5"
49
51
doit ecosystem_setup
50
52
doit env_create ${{ env.CHANS_DEV}} --python=${{ matrix.python-version }}
51
- - name : doit develop_install osx
52
- if : contains(matrix.os, 'macos')
53
- run : |
54
- eval "$(conda shell.bash hook)"
55
- conda activate test-environment
56
- doit develop_install ${{ env.CHANS_OSX }} -o tests
57
- pip install hilbertcurve
58
53
- name : doit develop_install
59
- if : (!contains(matrix.os, 'macos'))
60
54
run : |
61
55
eval "$(conda shell.bash hook)"
62
56
conda activate test-environment
Original file line number Diff line number Diff line change 1
1
import sys
2
2
3
3
import param
4
+
4
5
from setuptools import find_packages , setup
5
6
6
7
extras_require = {
34
35
'pyarrow >=1.0' ,
35
36
'python-snappy' ,
36
37
'retrying' ,
38
+ 'numpy' ,
39
+ 'dask[complete] >=2.0'
37
40
]
38
41
39
- # Checking for platform explicitly because
40
- # pyctdev does not handle dependency conditions
41
- # such as 'numpy<1.20;platform_system=="Darwin"'
42
- if sys .platform == 'darwin' :
43
- install_requires .extend ([
44
- 'dask[complete]>=2.0,<2020.12' ,
45
- 'numpy<1.20' ,
46
- ])
47
- else :
48
- install_requires .extend ([
49
- 'dask[complete]>=2.0' ,
50
- 'numpy' ,
51
- ])
52
-
53
42
setup_args = dict (
54
43
name = 'spatialpandas' ,
55
44
version = param .version .get_setup_version (
You can’t perform that action at this time.
0 commit comments