Skip to content

Commit

Permalink
Merge pull request #149 from arcivanov/python_3.8
Browse files Browse the repository at this point in the history
Support Python 3.8
  • Loading branch information
arcivanov committed Oct 16, 2019
2 parents 436f008 + 413056b commit a37f313
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 8 deletions.
8 changes: 4 additions & 4 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand All @@ -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:
Expand Down
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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'},
Expand All @@ -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'
)
4 changes: 2 additions & 2 deletions tox.ini
Original file line number Diff line number Diff line change
@@ -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

0 comments on commit a37f313

Please sign in to comment.