Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

disable buidling/deployment of python wheels #583

Merged
merged 13 commits into from
Aug 23, 2017
Merged
Changes from 1 commit
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
Prev Previous commit
[appveyor] remove unneeded setup code
  • Loading branch information
anthrotype committed Aug 8, 2017
commit 4add62cec6f643f926ce7787db655c47c5b83031
12 changes: 1 addition & 11 deletions scripts/appveyor.yml
Original file line number Diff line number Diff line change
@@ -1,11 +1,4 @@
environment:

global:
# SDK v7.0 MSVC Express 2008's SetEnv.cmd script will fail if the
# /E:ON and /V:ON options are not enabled in the batch script intepreter
# See: http://stackoverflow.com/a/13751649/163740
WITH_COMPILER: "cmd /E:ON /V:ON /C .\\scripts\\run_with_compiler.cmd"

matrix:
- BUILD_SYSTEM: CMake
GENERATOR: Visual Studio 14 2015 Win64
Expand Down Expand Up @@ -42,10 +35,7 @@ environment:
install:
- ps: |
if ($env:BUILD_SYSTEM -eq "Python") {
# install Python and pip when not already installed
if (-not(Test-Path($env:PYTHON))) { & scripts\install_py.ps1 }

# prepend newly installed Python to the PATH
# prepend Python to the PATH
$env:Path = $env:PYTHON + ';' + $env:PYTHON + '\\Scripts;' + $env:PATH

# upgrade pip to avoid out-of-date warnings
Expand Down