Skip to content

Commit 8d2ebc0

Browse files
committed
v1.1.1
1 parent e01dfd0 commit 8d2ebc0

File tree

3 files changed

+39
-39
lines changed

3 files changed

+39
-39
lines changed

openfeed/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,4 +8,4 @@
88

99
from .openfeed_client import OpenfeedClient
1010

11-
VERSION = '1.1.0'
11+
VERSION = '1.1.1'

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "openfeed"
3-
version = "1.1.0"
3+
version = "1.1.1"
44
description = "Python SDK for Openfeed"
55
authors = ["Barchart <[email protected]>"]
66
license = "MIT"

setup.py

Lines changed: 37 additions & 37 deletions
Original file line numberDiff line numberDiff line change
@@ -1,37 +1,37 @@
1-
#!/usr/bin/env python
2-
3-
from setuptools import setup, find_packages
4-
5-
install_requires = [
6-
'websocket-client>=0.40.0',
7-
'protobuf'
8-
]
9-
10-
tests_require = [
11-
'pytest',
12-
'python-dateutil>=2.7.5',
13-
]
14-
15-
with open("README.md", "r") as fh:
16-
long_description = fh.read()
17-
18-
setup(
19-
name='openfeed',
20-
version='1.1.0',
21-
author='Barchart',
22-
author_email='[email protected]',
23-
license='MIT',
24-
url='https://github.com/openfeed-org/sdk-python',
25-
include_package_data=True,
26-
packages=find_packages(),
27-
install_requires=install_requires,
28-
tests_require=tests_require,
29-
extras_require={
30-
'test': tests_require
31-
},
32-
description='Barchart Openfeed Example Client for Python',
33-
long_description=long_description,
34-
long_description_content_type='text/markdown',
35-
download_url='https://github.com/openfeed-org/sdk-python/archive/master.zip',
36-
keywords=[]
37-
)
1+
#!/usr/bin/env python
2+
3+
from setuptools import setup, find_packages
4+
5+
install_requires = [
6+
'websocket-client>=0.40.0',
7+
'protobuf'
8+
]
9+
10+
tests_require = [
11+
'pytest',
12+
'python-dateutil>=2.7.5',
13+
]
14+
15+
with open("README.md", "r") as fh:
16+
long_description = fh.read()
17+
18+
setup(
19+
name='openfeed',
20+
version='1.1.1',
21+
author='Barchart',
22+
author_email='[email protected]',
23+
license='MIT',
24+
url='https://github.com/openfeed-org/sdk-python',
25+
include_package_data=True,
26+
packages=find_packages(),
27+
install_requires=install_requires,
28+
tests_require=tests_require,
29+
extras_require={
30+
'test': tests_require
31+
},
32+
description='Barchart Openfeed Example Client for Python',
33+
long_description=long_description,
34+
long_description_content_type='text/markdown',
35+
download_url='https://github.com/openfeed-org/sdk-python/archive/master.zip',
36+
keywords=[]
37+
)

0 commit comments

Comments
 (0)