From 800683a92b811458b833012317eeb18292bb2640 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E2=80=9Cdsoper2=E2=80=9D?= <“dsoper@cisco.com”> Date: Fri, 8 Jun 2018 14:20:50 -0500 Subject: [PATCH] Version updated to 1.0.1 and changed urllib3 dependency <= 1.22 to avoid requests issue https://github.com/requests/requests/issues/4673 --- README.md | 2 +- requirements.txt | 4 ++-- setup.py | 4 ++-- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index edc27621..52fb2781 100644 --- a/README.md +++ b/README.md @@ -4,7 +4,7 @@ This is Intersight REST API This Python package is automatically generated by the [Swagger Codegen](https://github.com/swagger-api/swagger-codegen) project: - API version: 1.0.5-612 -- Package version: 1.0.0 +- Package version: 1.0.1 - Build package: io.swagger.codegen.languages.PythonClientCodegen ## Requirements. diff --git a/requirements.txt b/requirements.txt index d3eb9a99..2e9b7d64 100644 --- a/requirements.txt +++ b/requirements.txt @@ -3,5 +3,5 @@ pycrypto >= 2.6.1 six python_dateutil >= 2.5.3 setuptools >= 21.0.0 -urllib3 >= 1.15.1 -requests >= 2.17.0 +urllib3 >= 1.15.1, <= 1.22 +requests diff --git a/setup.py b/setup.py index bacbdcb3..eea3e4c8 100644 --- a/setup.py +++ b/setup.py @@ -15,7 +15,7 @@ from setuptools import setup, find_packages NAME = "intersight" -VERSION = "1.0.0" +VERSION = "1.0.1" # To install the library, run the following # # python setup.py install @@ -23,7 +23,7 @@ # prerequisite: setuptools # http://pypi.python.org/pypi/setuptools -REQUIRES = ["urllib3 >= 1.15", "six", "certifi", "python-dateutil", "pycrypto >= 2.6.1", "requests"] +REQUIRES = ["urllib3 >= 1.15, <= 1.22", "six", "certifi", "python-dateutil", "pycrypto >= 2.6.1", "requests"] setup( name=NAME,