Skip to content

Commit

Permalink
Merge pull request CiscoUcs#29 from dsoper2/requests
Browse files Browse the repository at this point in the history
Version updated to 1.0.1 and changed urllib3 dependency <= 1.22 to av…
  • Loading branch information
dsoper2 authored Jun 8, 2018
2 parents d630faf + 800683a commit 637a748
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down
4 changes: 2 additions & 2 deletions requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -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
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,15 +15,15 @@
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
#
# 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,
Expand Down

0 comments on commit 637a748

Please sign in to comment.