summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--appveyor.yml3
1 files changed, 1 insertions, 2 deletions
diff --git a/appveyor.yml b/appveyor.yml
index 795c8ee4..1131efe1 100644
--- a/appveyor.yml
+++ b/appveyor.yml
@@ -111,8 +111,7 @@ install:
- "SET PATH=%PYTHON%;%PYTHON%\\Scripts;%PATH%"
# Check that we have the expected version and architecture for Python
- - "python --version"
- - "python -c \"import struct; print(struct.calcsize('P') * 8)\""
+ - "python -c \"import struct, sys; print('{}\\n{}-bit'.format(sys.version, struct.calcsize('P') * 8))\""
# Upgrade to the latest version of pip to avoid it displaying warnings
# about it being out of date.