File tree Expand file tree Collapse file tree 2 files changed +13
-10
lines changed Expand file tree Collapse file tree 2 files changed +13
-10
lines changed Original file line number Diff line number Diff line change @@ -193,16 +193,15 @@ install:
193
193
build_script :
194
194
- if [%PCL_VERSION%]==[1.6] copy .\\appveyor\\bfgs.h "%PCL_ROOT%\include\pcl-%PCL_VERSION%\pcl\registration\bfgs.h"
195
195
- if [%PCL_VERSION%]==[1.6] copy .\\appveyor\\eigen.h "%PCL_ROOT%\include\pcl-%PCL_VERSION%\pcl\registration\eigen.h"
196
-
197
- # conda
198
- # - conda install -y -q Cython=0.25.2
199
- - conda install -y -q Cython
200
- - conda install -y -q numpy
196
+
197
+ # conda(comment out effective whl files?)
198
+ # - conda install -y -q Cython
199
+ # - conda install -y -q numpy
201
200
202
201
- python setup.py build_ext -i
203
202
- python setup.py install
204
- - python setup.py bdist_wheel
205
- - python -m pip list
203
+ # - python setup.py sdist bdist_wheel
204
+ # - python -m pip list
206
205
207
206
- if [%PCL_VERSION%]==[1.6] copy "%APPVEYOR_OPENNI_ROOT%" .
208
207
- if [%PCL_VERSION%]==[1.6] copy "%APPVEYOR_OPENNI_ROOT%" "%PYTHON%"
@@ -246,7 +245,7 @@ after_test:
246
245
# Appveyor use Python Version 3.7.0
247
246
# - python setup.py bdist_msi"
248
247
- if [%PYTHON_VERSION%] neq [3.7] python setup.py bdist_msi
249
- - ps : " ls dist"
248
+ # - ps: "ls dist"
250
249
251
250
artifacts :
252
251
# Archive the generated packages in the ci.appveyor.com build report.
Original file line number Diff line number Diff line change 20
20
install_requires = [
21
21
'filelock' ,
22
22
'nose' ,
23
- 'numpy' ,
23
+ # RuntimeWarning: numpy.dtype size changed, may indicate binary incompatibility
24
+ # https://github.com/scikit-image/scikit-image/issues/3655
25
+ # 'numpy>=1.15.1,!=1.50.0',
26
+ # numpy.ufunc size changed, may indicate binary incompatibility.
27
+ 'numpy>=1.16.1,!=1.16.2' ,
24
28
'Cython>=0.26.0' ,
25
29
]
26
30
@@ -868,7 +872,7 @@ def pkgconfig_win(flag, cut):
868
872
setup (name = 'python-pcl' ,
869
873
description = 'Python bindings for the Point Cloud Library (PCL). using Cython.' ,
870
874
url = 'http://github.com/strawlab/python-pcl' ,
871
- version = '0.3.0.a1 ' ,
875
+ version = '0.3.0a1 ' ,
872
876
author = 'John Stowers' ,
873
877
author_email = 'john.stowers@gmail.com' ,
874
878
maintainer = 'Tooru Oonuma' ,
You can’t perform that action at this time.
0 commit comments