Skip to content

Commit 13041f0

Browse files
jlhoodpraneetap
authored andcommitted
docs: update supported python versions (#968)
1 parent 58e02fc commit 13041f0

File tree

3 files changed

+7
-5
lines changed

3 files changed

+7
-5
lines changed

.travis.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,13 @@
11
# Enable container based builds
22
sudo: false
3+
dist: xenial # required for Python >= 3.7
34
language: python
45

56
matrix:
67
include:
8+
- python: 3.7
9+
env:
10+
- TOXENV=py37
711
- python: 3.6
812
env:
913
- TOXENV=py36

DEVELOPMENT_GUIDE.rst

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -17,10 +17,8 @@ steps manually.
1717

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

2523
Setup Python locally using `pyenv`_
2624

tox.ini

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
# and then run "tox" from this directory.
55

66
[tox]
7-
envlist = py27, py36
7+
envlist = py27, py36, py37
88

99
[testenv:py27]
1010
# Set this environment variable **only** for Python2.7. In Py >= 3.3, the hash seed property was set to a random

0 commit comments

Comments
 (0)