Skip to content

Commit

Permalink
ci: add Python 3.7 to CI
Browse files Browse the repository at this point in the history
  • Loading branch information
indygreg committed Oct 6, 2018
1 parent bad6bc5 commit 5187dab
Show file tree
Hide file tree
Showing 3 changed files with 45 additions and 0 deletions.
21 changes: 21 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -69,10 +69,22 @@ matrix:
- BUILDMODE=tox
- ARTIFACT_PATH=tox/3.6-dev

- stage: build
language: python
os: linux
python: 3.7
dist: xenial
sudo: required
env:
- BUILDMODE=tox
- ARTIFACT_PATH=tox/3.7

- stage: build
language: python
os: linux
python: 3.7-dev
dist: xenial
sudo: required
env:
- BUILDMODE=tox
- ARTIFACT_PATH=tox/3.7-dev
Expand Down Expand Up @@ -129,6 +141,15 @@ matrix:
env:
- BUILDMODE=manylinuxtest

- stage: test
language: python
os: linux
python: 3.7
dist: xenial
sudo: required
env:
- BUILDMODE=manylinuxtest

env:
global:
# Enable fuzzing tests, other expensive tests.
Expand Down
5 changes: 5 additions & 0 deletions NEWS.rst
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,11 @@ Other Actions Not Blocking Release
* API for ensuring max memory ceiling isn't exceeded.
* Move off nose for testing.

0.10.0 (not yet released)
=========================

* Added CI for Python 3.7.

0.9.1 (released 2018-06-04)
===========================

Expand Down
19 changes: 19 additions & 0 deletions appveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -56,6 +56,18 @@ environment:
PYTHON_VERSION: "3.6.5"
PYTHON_ARCH: "64"

- JOB: "3.7 32-bit"
TOXENV: "py37"
PYTHON: "C:\\Python37"
PYTHON_VERSION: "3.7.0"
PYTHON_ARCH: "32"

- JOB: "3.7 64-bit"
TOXENV: "py37"
PYTHON: "C:\\Python37-x64"
PYTHON_VERSION: "3.7.0"
PYTHON_ARCH: "64"

- JOB: "2.7 Conda"
TOXENV: "py27"
PYTHON: "C:\\Miniconda2.7-x64"
Expand All @@ -70,6 +82,13 @@ environment:
PYTHON_ARCH: "64"
CONDA: "1"

- JOB: "3.7 Conda"
TOXENV: "py37"
PYTHON: "C:\\Miniconda3.7-x64"
PYTHON_VERSION: "3.7"
PYTHON_ARCH: "64"
CONDA: "1"

init:
- "ECHO %TOXENV%"

Expand Down

0 comments on commit 5187dab

Please sign in to comment.