summaryrefslogtreecommitdiff
path: root/appveyor.yml
diff options
context:
space:
mode:
authorThomas Achtemichuk <tom@tomchuk.com>2018-03-19 13:28:43 -0400
committerOmer Katz <omer.drow@gmail.com>2018-03-19 19:28:43 +0200
commit75695205f6e7af8e7e9178e010debc3871b19106 (patch)
treea45acc3ae34c048d756ea42587b6a0c42d0bd5dc /appveyor.yml
parentdba85e2d9515b9ce202bd30e8690131aa055e6bf (diff)
downloadkombu-75695205f6e7af8e7e9178e010debc3871b19106.tar.gz
Rename `async` keyword to `asynchronous` (#839)
* Rename `async` keyword to `asynchronous` * Fixes #742 * Resolves "DeprecationWarning: 'async' and 'await' will become reserved keywords in Python 3.7" * Address PR feedback * Update appveyor config * Rename docs and tests
Diffstat (limited to 'appveyor.yml')
-rw-r--r--appveyor.yml11
1 files changed, 10 insertions, 1 deletions
diff --git a/appveyor.yml b/appveyor.yml
index c4c85c7e..f03d896b 100644
--- a/appveyor.yml
+++ b/appveyor.yml
@@ -28,6 +28,10 @@ environment:
PYTHON_VERSION: "3.6.x"
PYTHON_ARCH: "32"
+ - PYTHON: "C:\\Python37"
+ PYTHON_VERSION: "3.7.x"
+ PYTHON_ARCH: "32"
+
- PYTHON: "C:\\Python27-x64"
PYTHON_VERSION: "2.7.x"
PYTHON_ARCH: "64"
@@ -48,6 +52,11 @@ environment:
PYTHON_ARCH: "64"
WINDOWS_SDK_VERSION: "v7.1"
+ - PYTHON: "C:\\Python37-x64"
+ PYTHON_VERSION: "3.7.x"
+ PYTHON_ARCH: "64"
+ WINDOWS_SDK_VERSION: "v7.1"
+
init:
- "ECHO %PYTHON% %PYTHON_VERSION% %PYTHON_ARCH%"
@@ -66,7 +75,7 @@ after_test:
artifacts:
- path: dist\*
-
+
cache:
- '%LOCALAPPDATA%\pip\Cache'