summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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))"]