8000 Merge pull request #118 from arcivanov/release_0.8.0 · dotlambda/fluent-logger-python@3cb2606 · GitHub
[go: up one dir, main page]

Skip to content

Commit 3cb2606

Browse files
authored
Merge pull request fluent#118 from arcivanov/release_0.8.0
Release 0.8.0 prep
2 parents fe532e8 + 3378f5f commit 3cb2606

File tree

2 files changed

+18
-5
lines changed

2 files changed

+18
-5
lines changed

.travis.yml

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,11 @@ python:
77
- "3.4"
88
- "3.5"
99
- "3.6"
10-
- "3.6-dev"
11-
- "3.7-dev"
12-
- "nightly"
10+
- 3.6-dev
11+
- 3.7-dev
12+
- pypy
13+
- pypy3
14+
- nightly
1315
# command to install dependencies, e.g. pip install -r requirements.txt --use-mirrors
1416
install:
1517
- "pip install -e ."

setup.py

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

1313
setup(
1414
name='fluent-logger',
15-
version='0.7.0',
15+
version='0.8.0',
1616
description=desc,
1717
long_description=open(README).read(),
1818
package_dir={'fluent': 'fluent'},
@@ -25,9 +25,20 @@
2525
license='Apache License, Version 2.0',
2626
classifiers=[
2727
'Programming Language :: Python :: 2',
28+
'Programming Language :: Python :: 2.7',
2829
'Programming Language :: Python :: 3',
29-
'Development Status :: 4 - Beta',
30+
'Programming Language :: Python :: 3.2',
31+
'Programming Language :: Python :: 3.3',
32+
'Programming Language :: Python :: 3.4',
33+
'Programming Language :: Python :: 3.5',
34+
'Programming Language :: Python :: 3.6',
35+
'Programming Language :: Python :: 3.7',
36+
'Programming Language :: Python :: Implementation :: CPython',
37+
'Programming Language :: Python :: Implementation :: PyPy',
38+
'Development Status :: 5 - Production/Stable',
39+
'Topic :: System :: Logging',
3040
'Intended Audience :: Developers',
3141
],
42+
python_requires=">=2.7,!=3.0,!=3.1,<3.8",
3243
test_suite='tests'
3344
)

0 commit comments

Comments
 (0)
0