Skip to content

Commit

Permalink
Add infrastructure and docs updates for 3.7.
Browse files Browse the repository at this point in the history
  • Loading branch information
Itamar Turner-Trauring committed Jul 15, 2018
1 parent 88422dc commit b0166bf
Show file tree
Hide file tree
Showing 5 changed files with 17 additions and 4 deletions.
8 changes: 7 additions & 1 deletion .travis.yml
Expand Up @@ -5,8 +5,14 @@ python:
- "3.4"
- "3.5"
- "3.6"

sudo: false
matrix:
include:
- language: python
python:
- "3.7"
dist: xenial
sudo: true

install: pip install tox-travis

Expand Down
3 changes: 2 additions & 1 deletion README.rst
Expand Up @@ -13,7 +13,8 @@ The resulting logs tell you the story of what your software did: what happened,
Eliot works well within a single process, but can also be used across multiple processes to trace causality across a distributed system.
Eliot is only used to generate your logs; you will still need tools like Logstash and ElasticSearch to aggregate and store logs if you are using multiple processes.

Eliot supports Python 2.7, 3.4, 3.5, 3.6 and PyPy. It is maintained by Itamar Turner-Trauring, and released under the Apache 2.0 License.
Eliot supports Python 2.7, 3.4, 3.5, 3.6, 3.7 and PyPy.
It is maintained by Itamar Turner-Trauring, and released under the Apache 2.0 License.

* `Read the documentation <https://eliot.readthedocs.io>`_.
* Download from `PyPI`_.
Expand Down
2 changes: 1 addition & 1 deletion docs/source/index.rst
Expand Up @@ -50,4 +50,4 @@ Project Information

Eliot is maintained by `Itamar Turner-Trauring <mailto:itamar@itamarst.org>`_, and released under the Apache 2.0 License.

It supports Python 3.6, 3.5, 3.4, 2.7, as well as PyPy.
It supports Python 3.7, 3.6, 3.5, 3.4, 2.7, as well as PyPy.
1 change: 1 addition & 0 deletions setup.py
Expand Up @@ -23,6 +23,7 @@ def read(path):
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: Implementation :: CPython',
'Programming Language :: Python :: Implementation :: PyPy',
'Topic :: System :: Logging',
Expand Down
7 changes: 6 additions & 1 deletion tox.ini
@@ -1,5 +1,5 @@
[tox]
envlist = pypy, py27, py34, py35, py36
envlist = pypy, py27, py34, py35, py36, py37,
py27-twisted-latest, py35-twisted-latest,
linters3, sphinx

Expand All @@ -10,6 +10,7 @@ python =
3.4: py34
3.5: py35, py35-twisted-latest, linters3, sphinx
3.6: py36
3.7: py37

[testenv]
commands =
Expand Down Expand Up @@ -37,6 +38,10 @@ deps = cffi
basepython = python3.6
deps = cffi

[testenv:py37]
basepython = python3.7
deps = cffi

[testenv:py27-twisted-latest]
basepython = python2.7
deps = Twisted
Expand Down

0 comments on commit b0166bf

Please sign in to comment.