Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Commit 3378f5f

Browse filesBrowse files
committed
Release 0.8.0 prep
1 parent fe532e8 commit 3378f5f
Copy full SHA for 3378f5f

File tree

Expand file treeCollapse file tree

2 files changed

+18
-5
lines changed
Filter options
Expand file treeCollapse file tree

2 files changed

+18
-5
lines changed

‎.travis.yml

Copy file name to clipboardExpand all lines: .travis.yml
+5-3Lines 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

Copy file name to clipboardExpand all lines: setup.py
+13-2Lines 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)
Morty Proxy This is a proxified and sanitized view of the page, visit original site.