Skip to content

Commit

Permalink
Fix ContextualVersionConflict problem
Browse files Browse the repository at this point in the history
When trying to upload a release to pypi,
the upload fails with  a
'ContextualVersionConflict: urllib3 1.22'.
This is fixed when we install a version
of urllib3 which is 1.21.1 or higer and
lower than 1.22.

Resolves #14

Signed-off-by: Juergen Leopold <leopoldj@de.ibm.com>
  • Loading branch information
leopoldjuergen committed Jul 24, 2017
1 parent a80c7a9 commit dc5d9eb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -44,5 +44,5 @@ requests>=2.12.4,!=2.17.1,!=2.17.2 # Apache-2.0, from zhmcclient
six>=1.10.0 # MIT, from zhmcclient and others
stomp.py>=4.1.15 # Apache, from zhmcclient
tabulate>=0.7.7 # MIT, from zhmcclient
urllib3>=1.21.1 # MIT, from requests
urllib3>=1.21.1,<1.22 # MIT, from requests
wcwidth>=0.1.7 # MIT, from prompt_toolkit

0 comments on commit dc5d9eb

Please sign in to comment.