summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGiampaolo Rodola <g.rodola@gmail.com>2016-05-12 23:39:45 -0400
committerGiampaolo Rodola <g.rodola@gmail.com>2016-05-12 23:39:45 -0400
commit5f70f4d2099d60486612783333427d7f25bb7113 (patch)
treef4041593ef7eb0be977964c3906d94dbdc33c307
parent12cdb2cad9831e3dd381686e35f7aac002e2b9fe (diff)
downloadpsutil-5f70f4d2099d60486612783333427d7f25bb7113.tar.gz
appveyor experiment
-rw-r--r--INSTALL.rst4
-rw-r--r--appveyor.yml45
2 files changed, 25 insertions, 24 deletions
diff --git a/INSTALL.rst b/INSTALL.rst
index d2cb022d..e9794c4f 100644
--- a/INSTALL.rst
+++ b/INSTALL.rst
@@ -6,12 +6,12 @@ older Python version* `install pip <https://pip.pypa.io/en/latest/installing/>`_
Linux
=====
-Ubuntu / Debian::
+Ubuntu / Debian (use `python3-dev` for python 3)::
$ sudo apt-get install gcc python-dev
$ pip install psutil
-RedHat::
+RedHat (use `python3-devel` for python 3)::
$ sudo yum install gcc python-devel
$ pip install psutil
diff --git a/appveyor.yml b/appveyor.yml
index b00da683..89aaabcb 100644
--- a/appveyor.yml
+++ b/appveyor.yml
@@ -12,35 +12,35 @@ environment:
# 32 bits
- - PYTHON: "C:\\Python27"
- PYTHON_VERSION: "2.7.x"
- PYTHON_ARCH: "32"
+ # - PYTHON: "C:\\Python27"
+ # PYTHON_VERSION: "2.7.x"
+ # PYTHON_ARCH: "32"
- - PYTHON: "C:\\Python33"
- PYTHON_VERSION: "3.3.x"
- PYTHON_ARCH: "32"
+ # - PYTHON: "C:\\Python33"
+ # PYTHON_VERSION: "3.3.x"
+ # PYTHON_ARCH: "32"
- - PYTHON: "C:\\Python34"
- PYTHON_VERSION: "3.4.x"
- PYTHON_ARCH: "32"
+ # - PYTHON: "C:\\Python34"
+ # PYTHON_VERSION: "3.4.x"
+ # PYTHON_ARCH: "32"
- - PYTHON: "C:\\Python35"
- PYTHON_VERSION: "3.5.x"
- PYTHON_ARCH: "32"
+ # - PYTHON: "C:\\Python35"
+ # PYTHON_VERSION: "3.5.x"
+ # PYTHON_ARCH: "32"
- # 64 bits
+ # # 64 bits
- - PYTHON: "C:\\Python27-x64"
- PYTHON_VERSION: "2.7.x"
- PYTHON_ARCH: "64"
+ # - PYTHON: "C:\\Python27-x64"
+ # PYTHON_VERSION: "2.7.x"
+ # PYTHON_ARCH: "64"
- - PYTHON: "C:\\Python33-x64"
- PYTHON_VERSION: "3.3.x"
- PYTHON_ARCH: "64"
+ # - PYTHON: "C:\\Python33-x64"
+ # PYTHON_VERSION: "3.3.x"
+ # PYTHON_ARCH: "64"
- - PYTHON: "C:\\Python34-x64"
- PYTHON_VERSION: "3.4.x"
- PYTHON_ARCH: "64"
+ # - PYTHON: "C:\\Python34-x64"
+ # PYTHON_VERSION: "3.4.x"
+ # PYTHON_ARCH: "64"
- PYTHON: "C:\\Python35-x64"
PYTHON_VERSION: "3.5.x"
@@ -65,6 +65,7 @@ init:
install:
- "powershell .ci\\appveyor\\install.ps1"
+ - "%VSINSTALLDIR%\VC\bin\vcvars64.bat"
# - ps: (new-object net.webclient).DownloadFile('https://raw.github.com/pypa/pip/master/contrib/get-pip.py', 'C:/get-pip.py')
# - "%PYTHON%/python.exe C:/get-pip.py"
# - "%PYTHON%/python.exe -m pip install ..."