Skip to content

Commit

Permalink
update urllib3 version to 1.26.2
Browse files Browse the repository at this point in the history
  • Loading branch information
mhamzak008 committed Nov 27, 2020
1 parent b59b388 commit 0b36642
Show file tree
Hide file tree
Showing 13 changed files with 14 additions and 14 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
This Python package is automatically generated by the [OpenAPI Generator](https://openapi-generator.tech) project:

- API version: 2.0.0
- Package version: 2.0.3
- Package version: 2.1.0
- Build package: com.atlassian.opsgenie.codegen.geniepy.GeniepyGenerator

For more information, please visit [https://www.opsgenie.com/contact-us](https://www.opsgenie.com/contact-us)
Expand Down
2 changes: 1 addition & 1 deletion opsgenie_sdk/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -168,7 +168,7 @@
from opsgenie_sdk.models.weekday_time_restriction_interval import WeekdayTimeRestrictionInterval
from opsgenie_sdk.models.weekday_time_restriction_interval_all_of import WeekdayTimeRestrictionIntervalAllOf

__version__ = "2.0.3"
__version__ = "2.1.0"

# import apis into sdk package

Expand Down
2 changes: 1 addition & 1 deletion opsgenie_sdk/api_client.py
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ def __init__(self, configuration=None, header_name=None, header_value=None,
self.default_headers[header_name] = header_value
self.cookie = cookie
# Set default User-Agent.
self.user_agent = 'opsgenie-sdk-python-2.0.3'
self.user_agent = 'opsgenie-sdk-python-2.1.0'

# init metric publishers
self.http_metric_publisher = self.rest_client.http_metric
Expand Down
2 changes: 1 addition & 1 deletion opsgenie_sdk/configuration.py
Original file line number Diff line number Diff line change
Expand Up @@ -252,7 +252,7 @@ def to_debug_report(self):
"OS: {env}\n"\
"Python Version: {pyversion}\n"\
"Version of the API: 2.0.0\n"\
"SDK Package Version: 2.0.3".\
"SDK Package Version: 2.1.0".\
format(env=sys.platform, pyversion=sys.version)

def get_host_settings(self):
Expand Down
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,6 @@ certifi >= 14.05.14
six >= 1.10
python_dateutil >= 2.5.3
setuptools >= 21.0.0
urllib3 >= 1.15.1
urllib3 >= 1.26.2
numpy >= 1.16.3
tenacity >= 5.0.4
2 changes: 1 addition & 1 deletion scripts/sdk/config.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"packageName": "opsgenie_sdk",
"projectName": "opsgenie-sdk",
"packageVersion": "2.0.3",
"packageVersion": "2.1.0",
"packageUrl": "https://github.com/opsgenie/opsgenie-python-sdk",
"sortParamsByRequiredFlag": "true",
"hideGenerationTimestamp": "true",
Expand Down
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,15 +16,15 @@
from setuptools import setup, find_packages # noqa: H301

NAME = "opsgenie-sdk"
VERSION = "2.0.3"
VERSION = "2.1.0"
# To install the library, run the following
#
# python setup.py install
#
# prerequisite: setuptools
# http://pypi.python.org/pypi/setuptools

REQUIRES = ["urllib3 >= 1.15", "six >= 1.10", "certifi", "python-dateutil", "numpy >= 1.16.3", "setuptools >= 21.0.0", "tenacity >= 5.0.4"]
REQUIRES = ["urllib3 >= 1.26.2", "six >= 1.10", "certifi", "python-dateutil", "numpy >= 1.16.3", "setuptools >= 21.0.0", "tenacity >= 5.0.4"]

with open("README.md", "r") as fh:
long_description = fh.read()
Expand Down
2 changes: 1 addition & 1 deletion templates-original/README_onlypackage.mustache
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ This python library package is generated without supporting files like setup.py

To be able to use it, you will need these dependencies in your own package that uses this library:

* urllib3 >= 1.15
* urllib3 >= 1.26.2
* six >= 1.10
* certifi
* python-dateutil
Expand Down
2 changes: 1 addition & 1 deletion templates-original/requirements.mustache
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@ certifi >= 14.05.14
six >= 1.10
python_dateutil >= 2.5.3
setuptools >= 21.0.0
urllib3 >= 1.15.1
urllib3 >= 1.26.2
2 changes: 1 addition & 1 deletion templates-original/setup.mustache
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ VERSION = "{{packageVersion}}"
# prerequisite: setuptools
# http://pypi.python.org/pypi/setuptools

REQUIRES = ["urllib3 >= 1.15", "six >= 1.10", "certifi", "python-dateutil"]
REQUIRES = ["urllib3 >= 1.26.2", "six >= 1.10", "certifi", "python-dateutil"]
{{#asyncio}}
REQUIRES.append("aiohttp >= 3.0.0")
{{/asyncio}}
Expand Down
2 changes: 1 addition & 1 deletion templates/README_onlypackage.mustache
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ This python library package is generated without supporting files like setup.py

To be able to use it, you will need these dependencies in your own package that uses this library:

* urllib3 >= 1.15
* urllib3 >= 1.26.2
* six >= 1.10
* certifi
* python-dateutil
Expand Down
2 changes: 1 addition & 1 deletion templates/requirements.mustache
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,6 @@ certifi >= 14.05.14
six >= 1.10
python_dateutil >= 2.5.3
setuptools >= 21.0.0
urllib3 >= 1.15.1
urllib3 >= 1.26.2
numpy >= 1.16.3
tenacity >= 5.0.4
2 changes: 1 addition & 1 deletion templates/setup.mustache
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ VERSION = "{{packageVersion}}"
# prerequisite: setuptools
# http://pypi.python.org/pypi/setuptools

REQUIRES = ["urllib3 >= 1.15", "six >= 1.10", "certifi", "python-dateutil", "numpy >= 1.16.3", "setuptools >= 21.0.0", "tenacity >= 5.0.4"]
REQUIRES = ["urllib3 >= 1.26.2", "six >= 1.10", "certifi", "python-dateutil", "numpy >= 1.16.3", "setuptools >= 21.0.0", "tenacity >= 5.0.4"]
{{#asyncio}}
REQUIRES.append("aiohttp >= 3.0.0")
{{/asyncio}}
Expand Down

0 comments on commit 0b36642

Please sign in to comment.