This is an automated email from the ASF dual-hosted git repository. astitcher pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/qpid-proton.git
commit 1a7d32b85c5d89a6f3f1b25cf9b18e7868987f73 Author: Andrew Stitcher <[email protected]> AuthorDate: Wed Sep 18 18:43:17 2019 -0400 PROTON-2102: [Python] Alter CI configurations to allow building python package(s) --- .appveyor.yml | 2 ++ .travis.yml | 2 +- azure-pipelines/steps.yml | 4 ++++ 3 files changed, 7 insertions(+), 1 deletion(-) diff --git a/.appveyor.yml b/.appveyor.yml index dc8d069..116e881 100644 --- a/.appveyor.yml +++ b/.appveyor.yml @@ -16,6 +16,8 @@ install: - vcpkg install jsoncpp:x86-windows - vcpkg install jsoncpp:x64-windows - vcpkg integrate install +- pip install --user --upgrade pip +- pip install --user setuptools tox cache: - C:\ProgramData\chocolatey\bin -> .appveyor.yml - C:\ProgramData\chocolatey\lib -> .appveyor.yml diff --git a/.travis.yml b/.travis.yml index 56ff50a..a7bb2a5 100644 --- a/.travis.yml +++ b/.travis.yml @@ -74,7 +74,7 @@ addons: install: - python -m pip install --user --upgrade pip -- python -m pip install --user coverage tox +- python -m pip install --user coverage setuptools wheel tox - gem install minitest before_script: diff --git a/azure-pipelines/steps.yml b/azure-pipelines/steps.yml index 9f88e4b..ec481d6 100644 --- a/azure-pipelines/steps.yml +++ b/azure-pipelines/steps.yml @@ -5,6 +5,10 @@ steps: versionSpec: $(PythonVersion) addToPath: true architecture: $(PythonArch) +- script: | + python -m pip install --user --upgrade pip + python -m pip install --user setuptools wheel tox + name: InstallPythonModules - task: CMake@1 name: CMakeConfigure inputs: --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
