Skip to content

Commit 0b36642

Browse files
committed
update urllib3 version to 1.26.2
1 parent b59b388 commit 0b36642

13 files changed

+14
-14
lines changed

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
This Python package is automatically generated by the [OpenAPI Generator](https://openapi-generator.tech) project:
44

55
- API version: 2.0.0
6-
- Package version: 2.0.3
6+
- Package version: 2.1.0
77
- Build package: com.atlassian.opsgenie.codegen.geniepy.GeniepyGenerator
88

99
For more information, please visit [https://www.opsgenie.com/contact-us](https://www.opsgenie.com/contact-us)

opsgenie_sdk/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -168,7 +168,7 @@
168168
from opsgenie_sdk.models.weekday_time_restriction_interval import WeekdayTimeRestrictionInterval
169169
from opsgenie_sdk.models.weekday_time_restriction_interval_all_of import WeekdayTimeRestrictionIntervalAllOf
170170

171-
__version__ = "2.0.3"
171+
__version__ = "2.1.0"
172172

173173
# import apis into sdk package
174174

opsgenie_sdk/api_client.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@ def __init__(self, configuration=None, header_name=None, header_value=None,
8989
self.default_headers[header_name] = header_value
9090
self.cookie = cookie
9191
# Set default User-Agent.
92-
self.user_agent = 'opsgenie-sdk-python-2.0.3'
92+
self.user_agent = 'opsgenie-sdk-python-2.1.0'
9393

9494
# init metric publishers
9595
self.http_metric_publisher = self.rest_client.http_metric

opsgenie_sdk/configuration.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -252,7 +252,7 @@ def to_debug_report(self):
252252
"OS: {env}\n"\
253253
"Python Version: {pyversion}\n"\
254254
"Version of the API: 2.0.0\n"\
255-
"SDK Package Version: 2.0.3".\
255+
"SDK Package Version: 2.1.0".\
256256
format(env=sys.platform, pyversion=sys.version)
257257

258258
def get_host_settings(self):

requirements.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,6 @@ certifi >= 14.05.14
22
six >= 1.10
33
python_dateutil >= 2.5.3
44
setuptools >= 21.0.0
5-
urllib3 >= 1.15.1
5+
urllib3 >= 1.26.2
66
numpy >= 1.16.3
77
tenacity >= 5.0.4

scripts/sdk/config.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"packageName": "opsgenie_sdk",
33
"projectName": "opsgenie-sdk",
4-
"packageVersion": "2.0.3",
4+
"packageVersion": "2.1.0",
55
"packageUrl": "https://github.com/opsgenie/opsgenie-python-sdk",
66
"sortParamsByRequiredFlag": "true",
77
"hideGenerationTimestamp": "true",

setup.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -16,15 +16,15 @@
1616
from setuptools import setup, find_packages # noqa: H301
1717

1818
NAME = "opsgenie-sdk"
19-
VERSION = "2.0.3"
19+
VERSION = "2.1.0"
2020
# To install the library, run the following
2121
#
2222
# python setup.py install
2323
#
2424
# prerequisite: setuptools
2525
# http://pypi.python.org/pypi/setuptools
2626

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

2929
with open("README.md", "r") as fh:
3030
long_description = fh.read()

templates-original/README_onlypackage.mustache

+1-1
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ This python library package is generated without supporting files like setup.py
2525

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

28-
* urllib3 >= 1.15
28+
* urllib3 >= 1.26.2
2929
* six >= 1.10
3030
* certifi
3131
* python-dateutil

templates-original/requirements.mustache

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,4 @@ certifi >= 14.05.14
22
six >= 1.10
33
python_dateutil >= 2.5.3
44
setuptools >= 21.0.0
5-
urllib3 >= 1.15.1
5+
urllib3 >= 1.26.2

templates-original/setup.mustache

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ VERSION = "{{packageVersion}}"
1616
# prerequisite: setuptools
1717
# http://pypi.python.org/pypi/setuptools
1818

19-
REQUIRES = ["urllib3 >= 1.15", "six >= 1.10", "certifi", "python-dateutil"]
19+
REQUIRES = ["urllib3 >= 1.26.2", "six >= 1.10", "certifi", "python-dateutil"]
2020
{{#asyncio}}
2121
REQUIRES.append("aiohttp >= 3.0.0")
2222
{{/asyncio}}

templates/README_onlypackage.mustache

+1-1
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ This python library package is generated without supporting files like setup.py
2525

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

28-
* urllib3 >= 1.15
28+
* urllib3 >= 1.26.2
2929
* six >= 1.10
3030
* certifi
3131
* python-dateutil

templates/requirements.mustache

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,6 @@ certifi >= 14.05.14
22
six >= 1.10
33
python_dateutil >= 2.5.3
44
setuptools >= 21.0.0
5-
urllib3 >= 1.15.1
5+
urllib3 >= 1.26.2
66
numpy >= 1.16.3
77
tenacity >= 5.0.4

templates/setup.mustache

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ VERSION = "{{packageVersion}}"
1818
# prerequisite: setuptools
1919
# http://pypi.python.org/pypi/setuptools
2020

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

0 commit comments

Comments
 (0)