8000 add python 3.10 support · RNDteam2/fluent-logger-python@067b745 · GitHub
[go: up one dir, main page]

Skip to content

Commit 067b745

Browse files
committed
add python 3.10 support
1 parent 0e5f675 commit 067b745

File tree

3 files changed

+8
-3
lines changed

3 files changed

+8
-3
lines changed

.travis.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,8 @@ python:
77
- "3.6"
88
- "3.7"
99
- "3.8"
10+
- "3.9"
11+
- "3.10"
1012
- pypy
1113
- pypy3
1214
- nightly

setup.py

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212

1313
setup(
1414
name='mona-fluent-logger',
15-
version='0.0.6',
15+
version='0.0.8',
1616
description=desc,
1717
long_description=open(README).read(),
1818
package_dir={'fluent': 'fluent'},
@@ -31,11 +31,14 @@
3131
'Programming Language :: Python :: 3.5',
3232
'Programming Language :: Python :: 3.6',
3333
'Programming Language :: Python :: 3.7',
34+
'Programming Language :: Python :: 3.8',
35+
'Programming Language :: Python :: 3.9',
36+
'Programming Language :: Python :: 3.10',
3437
'Programming Language :: Python :: Implementation :: CPython',
3538
'Programming Language :: Python :: Implementation :: PyPy',
3639
'Development Status :: 5 - Production/Stable',
3740
'Topic :: System :: Logging',
3841
'Intended Audience :: Developers',
3942
],
40-
python_requires=">=2.7,!=3.0,!=3.1,!=3.2,!=3.3,<3.9",
43+
python_requires=">=2.7,!=3.0,!=3.1,!=3.2,!=3.3",
4144
test_suite='tests')

tox.ini

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tox]
22
minversion = 1.7.2
3-
envlist = py27, py32, py33, py34, py35, py36, py37, py38
3+
envlist = py27, py32, py33, py34, py35, py36, py37, py38, py39, py310
44
skip_missing_interpreters = True
55

66
[testenv]

0 commit comments

Comments
 (0)
0