Skip to content

Commit b4ef320

Browse files
committed
move binaries from purelib -> platlib
1 parent 1753a35 commit b4ef320

File tree

5 files changed

+16
-1
lines changed

5 files changed

+16
-1
lines changed

appveyor.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -132,7 +132,7 @@ install:
132132
"%PYTHON%/python.exe" -m pip install "numpy==%NP_VERSION%"
133133
134134
build_script:
135-
- build.cmd
135+
- appveyor\build.cmd
136136

137137
before_test:
138138
- cmd: >-

build.cmd renamed to appveyor/build.cmd

+2
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,8 @@ if %PYTHON_VERSION% GEQ 3 xcopy "%APPVEYOR_BUILD_FOLDER%\opencv\%BUILD_DIR%\lib\
2525
if %PYTHON_VERSION% LSS 3 xcopy "%APPVEYOR_BUILD_FOLDER%\opencv\%BUILD_DIR%\lib\RELEASE\*.pyd" .\cv2 /I
2626
xcopy "%APPVEYOR_BUILD_FOLDER%\opencv\%BUILD_DIR%\bin\Release\*.dll" .\cv2 /I
2727

28+
xcopy "%APPVEYOR_BUILD_FOLDER%\appveyor\setup.cfg" .\ /I
29+
2830
dir
2931

3032
"%PYTHON%/python.exe" setup.py bdist_wheel

appveyor/setup.cfg

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
[bdist_wheel]
2+
universal=0
3+
4+
[install]
5+
install_lib=\\

config.sh

+3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,9 @@
11
#!/bin/bash
22
set +e
33
echo "=== Loading config.sh === "
4+
5+
cp travis/setup.cfg .
6+
47
if [ -n "$IS_OSX" ]; then
58
echo " > OSX environment "
69
function build_wheel {

travis/setup.cfg

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
[bdist_wheel]
2+
universal=0
3+
4+
[install]
5+
install_lib=/

0 commit comments

Comments
 (0)