From 413056bdf5601c07f8af298f0efb111306c4fef8 Mon Sep 17 00:00:00 2001 From: Arcadiy Ivanov Date: Wed, 16 Oct 2019 12:16:24 -0400 Subject: [PATCH] Support Python 3.8 fixes #148 Signed-off-by: Arcadiy Ivanov --- .travis.yml | 8 ++++---- setup.py | 4 ++-- tox.ini | 4 ++-- 3 files changed, 8 insertions(+), 8 deletions(-) diff --git a/.travis.yml b/.travis.yml index 27b0c2d..1a955e1 100644 --- a/.travis.yml +++ b/.travis.yml @@ -5,15 +5,15 @@ python: - "3.4" - "3.5" - "3.6" - - 3.6-dev - - 3.7-dev + - "3.7" + - "3.8" - pypy - pypy3 - nightly # command to install dependencies, e.g. pip install -r requirements.txt --use-mirrors install: - "pip install -e ." - - "pip install 'coverage>=3.7,<3.8' coveralls" + - "pip install 'coverage~=4.5.4' coveralls" script: - "PYTHONFAULTHANDLER=x timeout -sABRT 30s nosetests -vsd" after_success: @@ -27,7 +27,7 @@ deploy: secure: CpNaj4F3TZvpP1aSJWidh/XexrWODV2sBdObrYU79Gyh9hFl6WLsA3JM9BfVsy9cGb/P/jP6ly4Z0/6qdIzZ5D6FPOB1B7rn5GZ2LAMOypRCA6W2uJbRjUU373Wut0p0OmQcMPto6XJsMlpvOEq+1uAq+LLAnAGEmmYTeskZebs= on: tags: true - condition: '"$TRAVIS_PYTHON_VERSION" = "3.6" || "$TRAVIS_PYTHON_VERSION" = "2.7"' + condition: '"$TRAVIS_PYTHON_VERSION" = "3.7" || "$TRAVIS_PYTHON_VERSION" = "2.7"' distributions: "sdist bdist_wheel" matrix: diff --git a/setup.py b/setup.py index 60d3212..e2330ab 100755 --- a/setup.py +++ b/setup.py @@ -12,7 +12,7 @@ setup( name='fluent-logger', - version='0.9.3', + version='0.9.4', description=desc, long_description=open(README).read(), package_dir={'fluent': 'fluent'}, @@ -37,6 +37,6 @@ 'Topic :: System :: Logging', 'Intended Audience :: Developers', ], - python_requires=">=2.7,!=3.0,!=3.1,!=3.2,!=3.3,<3.8", + python_requires=">=2.7,!=3.0,!=3.1,!=3.2,!=3.3,<3.9", test_suite='tests' ) diff --git a/tox.ini b/tox.ini index 2b6310b..6c3f032 100644 --- a/tox.ini +++ b/tox.ini @@ -1,9 +1,9 @@ [tox] minversion = 1.7.2 -envlist = py27, py32, py33, py34, py35 +envlist = py27, py32, py33, py34, py35, py36, py37, py38 skip_missing_interpreters = True [testenv] deps = nose - coverage>=3.7,<3.8 + coverage~=4.5.4 commands = python setup.py nosetests