Skip to content
Merged
Show file tree
Hide file tree
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,9 +1,13 @@
# Enable container based builds
sudo: false
dist: xenial # required for Python >= 3.7
language: python

matrix:
include:
- python: 3.7
env:
- TOXENV=py37
- python: 3.6
env:
- TOXENV=py36
Expand Down
6 changes: 2 additions & 4 deletions DEVELOPMENT_GUIDE.rst
Original file line number Diff line number Diff line change
Expand Up @@ -17,10 +17,8 @@ steps manually.

1. Install Python Versions
~~~~~~~~~~~~~~~~~~~~~~~~~~
Python 2.7 is our officially supported Python version. We have a future goal to support to Python3.6 but the code base
currently does not work with Python3. To make future migration easier, any new code we write must be compatible with
Python3. Follow the idioms from this `excellent cheatsheet`_ to make sure your code is compatible with both Python
versions.
Our officially supported Python versions are 2.7, 3.6, and 3.7. Follow the idioms from this `excellent cheatsheet`_ to
make sure your code is compatible with both Python 2.7 and 3 versions.

Setup Python locally using `pyenv`_

Expand Down