Skip to content

Commit

Permalink
test with py 3.5, 3.6 instead of 3.4, 3.5
Browse files Browse the repository at this point in the history
  • Loading branch information
kwgoodman committed Apr 5, 2017
1 parent 583aa9a commit a8daf86
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 10 deletions.
8 changes: 4 additions & 4 deletions .travis.yml
Expand Up @@ -16,23 +16,23 @@ matrix:

# python 3.4
- os: linux
env: TEST_DEPS="numpy==1.12.1 nose" PYTHON_VERSION="3.4" PYTHON_ARCH="64" TEST_RUN="sdist"
env: TEST_DEPS="numpy==1.12.1 nose" PYTHON_VERSION="3.5" PYTHON_ARCH="64" TEST_RUN="sdist"

# python 3.5
- os: linux
env: TEST_DEPS="numpy==1.12.1 nose" PYTHON_VERSION="3.5" PYTHON_ARCH="64"
env: TEST_DEPS="numpy==1.12.1 nose" PYTHON_VERSION="3.6" PYTHON_ARCH="64"

# python 2.7
- os: osx
env: TEST_DEPS="numpy==1.12.1 nose" PYTHON_VERSION="2.7" PYTHON_ARCH="64" TEST_RUN="sdist"

# python 3.4
- os: osx
env: TEST_DEPS="numpy==1.12.1 nose" PYTHON_VERSION="3.4" PYTHON_ARCH="64"
env: TEST_DEPS="numpy==1.12.1 nose" PYTHON_VERSION="3.5" PYTHON_ARCH="64"

# python 3.5
- os: osx
env: TEST_DEPS="numpy==1.12.1 nose" PYTHON_VERSION="3.5" PYTHON_ARCH="64"
env: TEST_DEPS="numpy==1.12.1 nose" PYTHON_VERSION="3.6" PYTHON_ARCH="64"

before_install:
- uname -a
Expand Down
4 changes: 2 additions & 2 deletions README.rst
Expand Up @@ -101,7 +101,7 @@ Install
Requirements:

======================== ====================================================
Bottleneck Python 2.7, 3.4, 3.5; NumPy 1.12.1
Bottleneck Python 2.7, 3.5, 3.6; NumPy 1.12.1
Compile gcc, clang, MinGW or MSVC
Unit tests nose
======================== ====================================================
Expand All @@ -128,4 +128,4 @@ After you have installed Bottleneck, run the suite of unit tests::
<snip>
Ran 169 tests in 57.205s
OK
<nose.result.TextTestResult run=169 errors=0 failures=0>
<nose.result.TextTestResult run=169 errors=0 failures=0>
8 changes: 4 additions & 4 deletions appveyor.yml
Expand Up @@ -21,22 +21,22 @@ environment:
platform: x64
CONDA_HOME: "C:\\Miniconda-x64"

- PYTHON_VERSION: "3.4"
- PYTHON_VERSION: "3.5"
PYTHON_ARCH: "32"
platform: x86
CONDA_HOME: "C:\\Miniconda3"

- PYTHON_VERSION: "3.4"
- PYTHON_VERSION: "3.5"
PYTHON_ARCH: "64"
platform: x64
CONDA_HOME: "C:\\Miniconda3-x64"

- PYTHON_VERSION: "3.5"
- PYTHON_VERSION: "3.6"
PYTHON_ARCH: "32"
platform: x86
CONDA_HOME: "C:\\Miniconda3"

- PYTHON_VERSION: "3.5"
- PYTHON_VERSION: "3.6"
PYTHON_ARCH: "64"
platform: x64
CONDA_HOME: "C:\\Miniconda3-x64"
Expand Down

0 comments on commit a8daf86

Please sign in to comment.