Skip to content

Commit

Permalink
Merge pull request #18 from mailgun/maxim/develop
Browse files Browse the repository at this point in the history
PIP-776: Remove version pins in setup.py
  • Loading branch information
horkhe committed Mar 9, 2020
2 parents 659d4e1 + bd86388 commit a437ca5
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
6 changes: 3 additions & 3 deletions setup.py
Expand Up @@ -3,7 +3,7 @@
from setuptools import setup, find_packages

setup(name='etcd3-slim',
version='0.2.3',
version='0.2.4',
description='Thin Etcd3 client',
long_description=open('README.md').read(),
classifiers=[
Expand Down Expand Up @@ -31,7 +31,7 @@
],
install_requires=[
'enum34',
'grpcio==1.20.1',
'protobuf==3.7.1',
'grpcio',
'protobuf',
'six'
])
3 changes: 2 additions & 1 deletion tests/etcd3/client_test.py
Expand Up @@ -253,7 +253,8 @@ def test_auto_reconnect_outage():
'(OS Error)|'
'(Socket closed)|'
'(Transport closed)|'
'(Connect Failed)'):
'(Connect Failed)|'
'(failed to connect to all addresses)'):
proxied_clt.put('/test/foo', 'bazz1')

# When: etcd gets back in service
Expand Down

0 comments on commit a437ca5

Please sign in to comment.