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
This commit is contained in:
Daniele Varrazzo 2020-10-27 12:18:51 +01:00
parent 376ec91241
commit 6bec9aec90
2 changed files with 15 additions and 12 deletions

View File

@ -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"

View File

@ -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))"]