Skip to content

Commit a37f313

Browse files
authored
Merge pull request #149 from arcivanov/python_3.8
Support Python 3.8
2 parents 436f008 + 413056b commit a37f313

File tree

3 files changed

+8
-8
lines changed

3 files changed

+8
-8
lines changed

.travis.yml

+4-4
Original file line numberDiff line numberDiff line change
@@ -5,15 +5,15 @@ python:
55
- "3.4"
66
- "3.5"
77
- "3.6"
8-
- 3.6-dev
9-
- 3.7-dev
8+
- "3.7"
9+
- "3.8"
1010
- pypy
1111
- pypy3
1212
- nightly
1313
# command to install dependencies, e.g. pip install -r requirements.txt --use-mirrors
1414
install:
1515
- "pip install -e ."
16-
- "pip install 'coverage>=3.7,<3.8' coveralls"
16+
- "pip install 'coverage~=4.5.4' coveralls"
1717
script:
1818
- "PYTHONFAULTHANDLER=x timeout -sABRT 30s nosetests -vsd"
1919
after_success:
@@ -27,7 +27,7 @@ deploy:
2727
secure: CpNaj4F3TZvpP1aSJWidh/XexrWODV2sBdObrYU79Gyh9hFl6WLsA3JM9BfVsy9cGb/P/jP6ly4Z0/6qdIzZ5D6FPOB1B7rn5GZ2LAMOypRCA6W2uJbRjUU373Wut0p0OmQcMPto6XJsMlpvOEq+1uAq+LLAnAGEmmYTeskZebs=
2828
on:
2929
tags: true
30-
condition: '"$TRAVIS_PYTHON_VERSION" = "3.6" || "$TRAVIS_PYTHON_VERSION" = "2.7"'
30+
condition: '"$TRAVIS_PYTHON_VERSION" = "3.7" || "$TRAVIS_PYTHON_VERSION" = "2.7"'
3131
distributions: "sdist bdist_wheel"
3232

3333
matrix:

setup.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212

1313
setup(
1414
name='fluent-logger',
15-
version='0.9.3',
15+
version='0.9.4',
1616
description=desc,
1717
long_description=open(README).read(),
1818
package_dir={'fluent': 'fluent'},
@@ -37,6 +37,6 @@
3737
'Topic :: System :: Logging',
3838
'Intended Audience :: Developers',
3939
],
40-
python_requires=">=2.7,!=3.0,!=3.1,!=3.2,!=3.3,<3.8",
40+
python_requires=">=2.7,!=3.0,!=3.1,!=3.2,!=3.3,<3.9",
4141
test_suite='tests'
4242
)

tox.ini

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
[tox]
22
minversion = 1.7.2
3-
envlist = py27, py32, py33, py34, py35
3+
envlist = py27, py32, py33, py34, py35, py36, py37, py38
44
skip_missing_interpreters = True
55

66
[testenv]
77
deps = nose
8-
coverage>=3.7,<3.8
8+
coverage~=4.5.4
99
commands = python setup.py nosetests

0 commit comments

Comments
 (0)