Skip to content
This repository was archived by the owner on May 3, 2023. It is now read-only.

Commit 6ddad6a

Browse files
authored
BLD: add msvcp DLL to windows wheel build (#82)
* BLD: add msvcp DLLL to windows wheel build
1 parent 53f9590 commit 6ddad6a

File tree

2 files changed

+5
-0
lines changed

2 files changed

+5
-0
lines changed

azure-pipelines.yml

+3
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,7 @@ jobs:
2525
NP_BUILD_DEP: "1.13.3"
2626
py_3.6_64:
2727
PYTHON_VERSION: "3.6.x"
28+
PYTHON_ARCH: "x64"
2829
NP_BUILD_DEP: "1.13.3"
2930
py_3.7_32:
3031
PYTHON_VERSION: "3.7.x"
@@ -33,6 +34,7 @@ jobs:
3334
NIGHTLY_BUILD: "true"
3435
py_3.7_64:
3536
PYTHON_VERSION: "3.7.x"
37+
PYTHON_ARCH: "x64"
3638
NP_BUILD_DEP: "1.14.5"
3739
NIGHTLY_BUILD: "true"
3840
py_3.8_32:
@@ -42,6 +44,7 @@ jobs:
4244
NIGHTLY_BUILD: "true"
4345
py_3.8_64:
4446
PYTHON_VERSION: "3.8.x"
47+
PYTHON_ARCH: "x64"
4548
NP_BUILD_DEP: "1.17.3"
4649
NIGHTLY_BUILD: "true"
4750

azure/windows.yml

+2
Original file line numberDiff line numberDiff line change
@@ -71,6 +71,8 @@ jobs:
7171
pushd pandas
7272
python setup.py build
7373
python setup.py bdist_wheel
74+
cp "C:/Program Files (x86)/Microsoft Visual Studio/2017/Enterprise/VC/Redist/MSVC/14.16.27012/$PYTHON_ARCH/Microsoft.VC141.CRT/msvcp140.dll" pandas/_libs/window
75+
cp "C:/Program Files (x86)/Microsoft Visual Studio/2017/Enterprise/VC/Redist/MSVC/14.16.27012/$PYTHON_ARCH/Microsoft.VC141.CRT/concrt140.dll" pandas/_libs/window
7476
ls dist
7577
twine check dist/*
7678
popd

0 commit comments

Comments
 (0)