Skip to content

Commit a73de72

Browse files
committed
Unpin msgpack version
fixes fluent#171 Signed-off-by: Arcadiy Ivanov <[email protected]>
1 parent d1b81ba commit a73de72

File tree

2 files changed

+7
-6
lines changed

2 files changed

+7
-6
lines changed

.travis.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,11 @@ sudo: false
22
language: python
33
python:
44
- "2.7"
5-
- "3.4"
65
- "3.5"
76
- "3.6"
87
- "3.7"
98
- "3.8"
9+
- "3.9"
1010
- pypy
1111
- pypy3
1212
- nightly
@@ -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.8" || "$TRAVIS_PYTHON_VERSION" = "2.7"'
30+
condition: '"$TRAVIS_PYTHON_VERSION" = "3.9" || "$TRAVIS_PYTHON_VERSION" = "2.7"'
3131
distributions: "sdist bdist_wheel"
3232

3333
matrix:

setup.py

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

1313
setup(
1414
name='fluent-logger',
15-
version='0.9.6',
15+
version='0.9.7',
1616
description=desc,
1717
long_description=open(README).read(),
1818
package_dir={'fluent': 'fluent'},
1919
packages=['fluent'],
20-
install_requires=['msgpack<1.0.0'],
20+
install_requires=['msgpack'],
2121
author='Kazuki Ohta',
2222
author_email='[email protected]',
2323
url='https://github.com/fluent/fluent-logger-python',
@@ -27,16 +27,17 @@
2727
'Programming Language :: Python :: 2',
2828
'Programming Language :: Python :: 2.7',
2929
'Programming Language :: Python :: 3',
30-
'Programming Language :: Python :: 3.4',
3130
'Programming Language :: Python :: 3.5',
3231
'Programming Language :: Python :: 3.6',
3332
'Programming Language :: Python :: 3.7',
33+
'Programming Language :: Python :: 3.8',
34+
'Programming Language :: Python :: 3.9',
3435
'Programming Language :: Python :: Implementation :: CPython',
3536
'Programming Language :: Python :: Implementation :: PyPy',
3637
'Development Status :: 5 - Production/Stable',
3738
'Topic :: System :: Logging',
3839
'Intended Audience :: Developers',
3940
],
40-
python_requires=">=2.7,!=3.0,!=3.1,!=3.2,!=3.3",
41+
python_requires=">=2.7,!=3.0,!=3.1,!=3.2,!=3.3,!=3.4",
4142
test_suite='tests'
4243
)

0 commit comments

Comments
 (0)