Skip to content

Commit 65d89c1

Browse files
author
Aleksander Papież
authored
Add support for Python 3.7 and 3.8 (#155)
1 parent 266387c commit 65d89c1

File tree

5 files changed

+15
-4
lines changed

5 files changed

+15
-4
lines changed

.travis.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,8 @@ python:
44
- "3.4"
55
- "3.5"
66
- "3.6"
7+
- "3.7"
8+
- "3.8"
79
# command to install dependencies
810
install: |
911
pip install -r requirements.txt

CHANGELOG.rst

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,18 @@
11
Changelog
22
---------
33

4+
0.5.2
5+
``````
6+
7+
+ Added support for Python 3.7 and 3.8.
8+
9+
410
0.5.1
511
``````
612

713
+ Fixed various Access Key bugs.
814

15+
916
0.5.0
1017
``````
1118
+ Added support for Access Keys.

README.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ Use pip to install!
1717

1818
pip install keen
1919

20-
This client is known to work on Python 2.7, 3.4, 3.5 and 3.6.
20+
This client is known to work on Python 2.7, 3.4, 3.5, 3.6, 3.7 and 3.8.
2121

2222
For versions of Python < 2.7.9, you’ll need to install pyasn1, ndg-httpsclient, pyOpenSSL.
2323

@@ -652,7 +652,7 @@ To run tests:
652652
Changelog
653653
---------
654654

655-
This project is in alpha stage at version 0.5.1 . See the full CHANGELOG `here <./CHANGELOG.rst>`_.
655+
This project is in alpha stage at version 0.5.2. See the full CHANGELOG `here <./CHANGELOG.rst>`_.
656656

657657

658658
Questions & Support

keen/utilities.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
from keen import exceptions
66

77

8-
VERSION = "0.5.1"
8+
VERSION = "0.5.2"
99

1010
def version():
1111
"""

setup.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525

2626
setup(
2727
name="keen",
28-
version="0.5.1",
28+
version="0.5.2",
2929
description="Python Client for Keen IO",
3030
long_description=codecs.open(os.path.join('README.rst'), 'r', encoding='UTF-8').read(),
3131
author="Keen IO",
@@ -47,6 +47,8 @@
4747
'Programming Language :: Python :: 3.4',
4848
'Programming Language :: Python :: 3.5',
4949
'Programming Language :: Python :: 3.6',
50+
'Programming Language :: Python :: 3.7',
51+
'Programming Language :: Python :: 3.8',
5052
'Topic :: Software Development :: Libraries :: Python Modules',
5153
]
5254
)

0 commit comments

Comments
 (0)