-
Notifications
You must be signed in to change notification settings - Fork 669
Closed
Labels
Description
Under the "dependencies" section of the documentation, it is listed that there is a dependency on Python 2.6, 2.7, 3.3, 3.4, or 3.6, and that "The tests are run against 2.7 and 3.6 on Travis CI.":
However, looking into the tox.ini and .travis.yml, it looks like tests run against Python 3.8, so Python 3.8 seems to be supported:
Lines 2 to 5 in 71d1ca0
| python: | |
| - "3.8" | |
| - "3.6" | |
| - "2.7" |
Line 14 in 71d1ca0
| envlist = py27, py38 |
I did some testing using Python 3.8, and things seem to work well -- I was wondering if we could update the docs to state that Python 3.8 is supported, and that Travis runs tests against 3.8.
Happy to submit a PR if you'd prefer that instead of just an open issue!
Reactions are currently unavailable
