Skip to content

Commit 1182c8e

Browse files
authored
change appveyor testing from python 3.4 to python 3.6 (#393)
* add python 3.5 and 3.6 to appveyor * only py 3.6 on windows * update whatsnew
1 parent cc380b1 commit 1182c8e

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

appveyor.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,7 @@ environment:
77

88
matrix:
99
- PYTHON_VERSION: "2.7"
10-
- PYTHON_VERSION: "3.4"
11-
#- PYTHON_VERSION: "3.5"
10+
- PYTHON_VERSION: "3.6"
1211

1312
platform:
1413
- x86
@@ -18,6 +17,8 @@ install:
1817
# Use the pre-installed Miniconda for the desired arch
1918
- ps: if($env:PYTHON_VERSION -eq '3.5')
2019
{ $env:CONDA_PATH="$($env:CONDA_PATH)35" }
20+
- ps: if($env:PYTHON_VERSION -eq '3.6')
21+
{ $env:CONDA_PATH="$($env:CONDA_PATH)36" }
2122
- ps: if($env:TARGET_ARCH -eq 'x64')
2223
{ $env:CONDA_PATH="$($env:CONDA_PATH)-x64" }
2324
- ps: $env:path="$($env:CONDA_PATH);$($env:CONDA_PATH)\Scripts;$($env:CONDA_PATH)\Library\bin;C:\cygwin\bin;$($env:PATH)"

docs/sphinx/source/whatsnew/v0.5.2.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ Documentation
2121

2222
Testing
2323
~~~~~~~
24-
*
24+
* Test Python 3.6 on Windows with Appveyor instead of 3.4. (:issue:`392`)
2525

2626
Contributors
2727
~~~~~~~~~~~~

0 commit comments

Comments
 (0)