summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDaniele Varrazzo <daniele.varrazzo@gmail.com>2020-10-27 12:18:51 +0100
committerDaniele Varrazzo <daniele.varrazzo@gmail.com>2020-10-27 12:51:00 +0100
commit6bec9aec90fb705284102f093dda2f1be907de10 (patch)
tree3aa5042498941dd2c9e17c3cdef614f15bf566a0
parent376ec91241b5b7e34b94a62670d0a2ea6a04fa6d (diff)
downloadpsycopg2-6bec9aec90fb705284102f093dda2f1be907de10.tar.gz
Temporary commit to list the Python versions available
Drop me before merging. Checking why [1] failed. [1] https://ci.appveyor.com/project/psycopg/psycopg2/builds/35977860/job/u2ehf04x6l0wth03
-rw-r--r--.appveyor.yml25
-rwxr-xr-xscripts/appveyor.py2
2 files changed, 15 insertions, 12 deletions
diff --git a/.appveyor.yml b/.appveyor.yml
index e1db618..be9062f 100644
--- a/.appveyor.yml
+++ b/.appveyor.yml
@@ -11,20 +11,21 @@ environment:
matrix:
# For Python versions available on Appveyor, see
# https://www.appveyor.com/docs/windows-images-software/#python
- - {PY_VER: "27", PY_ARCH: "32"}
- - {PY_VER: "27", PY_ARCH: "64"}
+ # NOMERGE: re-enable before merging
+ # - {PY_VER: "27", PY_ARCH: "32"}
+ # - {PY_VER: "27", PY_ARCH: "64"}
- {PY_VER: "39", PY_ARCH: "32"}
- {PY_VER: "39", PY_ARCH: "64"}
- - {PY_VER: "38", PY_ARCH: "32"}
- - {PY_VER: "38", PY_ARCH: "64"}
- - {PY_VER: "37", PY_ARCH: "32"}
- - {PY_VER: "37", PY_ARCH: "64"}
- - {PY_VER: "36", PY_ARCH: "32"}
- - {PY_VER: "36", PY_ARCH: "64"}
- - {PY_VER: "35", PY_ARCH: "32"}
- - {PY_VER: "35", PY_ARCH: "64"}
- - {PY_VER: "34", PY_ARCH: "32"}
- - {PY_VER: "34", PY_ARCH: "64"}
+ # - {PY_VER: "38", PY_ARCH: "32"}
+ # - {PY_VER: "38", PY_ARCH: "64"}
+ # - {PY_VER: "37", PY_ARCH: "32"}
+ # - {PY_VER: "37", PY_ARCH: "64"}
+ # - {PY_VER: "36", PY_ARCH: "32"}
+ # - {PY_VER: "36", PY_ARCH: "64"}
+ # - {PY_VER: "35", PY_ARCH: "32"}
+ # - {PY_VER: "35", PY_ARCH: "64"}
+ # - {PY_VER: "34", PY_ARCH: "32"}
+ # - {PY_VER: "34", PY_ARCH: "64"}
OPENSSL_VERSION: "1_1_1g"
POSTGRES_VERSION: "11_4"
diff --git a/scripts/appveyor.py b/scripts/appveyor.py
index e3f5e1f..da2b78f 100755
--- a/scripts/appveyor.py
+++ b/scripts/appveyor.py
@@ -77,6 +77,8 @@ def setup_build_env():
def python_info():
logger.info("Python Information")
+ # NOMERGE: exploring available Python version. Remove before merging.
+ run_command(["dir", "C:\\"])
run_python(['--version'], stderr=sp.STDOUT)
run_python(
['-c', "import sys; print('64bit: %s' % (sys.maxsize > 2**32))"]