diff options
author | Todd Leonhardt <todd.leonhardt@gmail.com> | 2020-01-22 20:09:10 -0500 |
---|---|---|
committer | Todd Leonhardt <todd.leonhardt@gmail.com> | 2020-01-22 20:09:10 -0500 |
commit | 7f65c2cfb99b7572b73ce986406f55a62cd91d29 (patch) | |
tree | 9a5b982c4abcff5eed911ab6e899c705e4790864 | |
parent | 9c0f5ce5813954f9991a22611f288009bc296577 (diff) | |
download | cmd2-git-7f65c2cfb99b7572b73ce986406f55a62cd91d29.tar.gz |
Remove Python 3.8 from AppVeyor since it doesn't seem to yet support it, at least not in a Miniconda environment
-rw-r--r-- | .appveyor.yml | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/.appveyor.yml b/.appveyor.yml index 7a29f2a7..b335fe55 100644 --- a/.appveyor.yml +++ b/.appveyor.yml @@ -8,14 +8,11 @@ environment: PYTHON_VERSION: "3.6.x" PYTHON_ARCH: "64" TOXENV: "py36" + - PYTHON: "C:\\Miniconda37-x64" PYTHON_VERSION: "3.7.x" PYTHON_ARCH: "64" TOXENV: "py37" - - PYTHON: "C:\\Miniconda38-x64" - PYTHON_VERSION: "3.8.x" - PYTHON_ARCH: "64" - TOXENV: "py38" init: - "%PYTHON%/python -V" |