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

BLD: add msvcp DLL to windows wheel build #82

Merged
merged 8 commits into from
Apr 29, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions azure-pipelines.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@ jobs:
NP_BUILD_DEP: "1.13.3"
py_3.6_64:
PYTHON_VERSION: "3.6.x"
PYTHON_ARCH: "x64"
NP_BUILD_DEP: "1.13.3"
py_3.7_32:
PYTHON_VERSION: "3.7.x"
Expand All @@ -33,6 +34,7 @@ jobs:
NIGHTLY_BUILD: "true"
py_3.7_64:
PYTHON_VERSION: "3.7.x"
PYTHON_ARCH: "x64"
NP_BUILD_DEP: "1.14.5"
NIGHTLY_BUILD: "true"
py_3.8_32:
Expand All @@ -42,6 +44,7 @@ jobs:
NIGHTLY_BUILD: "true"
py_3.8_64:
PYTHON_VERSION: "3.8.x"
PYTHON_ARCH: "x64"
NP_BUILD_DEP: "1.17.3"
NIGHTLY_BUILD: "true"

Expand Down
2 changes: 2 additions & 0 deletions azure/windows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -71,6 +71,8 @@ jobs:
pushd pandas
python setup.py build
python setup.py bdist_wheel
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
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
ls dist
twine check dist/*
popd
Expand Down