Skip to content

Commit

Permalink
Merge pull request #16 from mailgun/sjohn/constrained-enum34
Browse files Browse the repository at this point in the history
Add py3.7 to build matrix, only install enum34 on python versions less than 3.4
  • Loading branch information
pirogoeth authored May 15, 2019
2 parents 99d2255 + 373a24c commit 8008684
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
2 changes: 2 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,9 @@
dist: xenial
language: python
python:
- 2.7
- 3.6
- 3.7
env:
matrix:
- ETCD3_VERSION=v3.3.10 ETCD3_TLS="" ETCD3_USER=""
Expand Down
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
from setuptools import setup, find_packages

setup(name='etcd3-slim',
version='0.2.0',
version='0.2.1',
description='Thin Etcd3 client',
long_description=open('README.md').read(),
classifiers=[
Expand All @@ -30,7 +30,7 @@
'requests'
],
install_requires=[
'enum34',
'enum34;python_version<"3.4"',
'grpcio',
'protobuf',
'six'
Expand Down

0 comments on commit 8008684

Please sign in to comment.