Skip to content

Commit 4082f56

Browse files
committed
update typing_extensions dependency
1 parent d0966e9 commit 4082f56

File tree

3 files changed

+5
-4
lines changed

3 files changed

+5
-4
lines changed

phasetwo/configuration.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ class Configuration(object):
8282
_default = None
8383

8484
def __init__(
85-
self,
85+
self, access_token=None,
8686
host=None,
8787
discard_unknown_keys=False,
8888
disabled_client_side_validations="",
@@ -93,6 +93,7 @@ def __init__(
9393
):
9494
"""Constructor
9595
"""
96+
self.access_token = access_token
9697
self._base_path = "https://app.phasetwo.io/realms" if host is None else host
9798
"""Default Base url
9899
"""

requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,5 +2,5 @@ certifi >= 14.5.14
22
frozendict ~= 2.3.4
33
python-dateutil ~= 2.7.0
44
setuptools >= 21.0.0
5-
typing_extensions ~= 4.3.0
5+
typing_extensions >= 4.5.0
66
urllib3 ~= 1.26.7

setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
from setuptools import setup, find_packages # noqa: H301
1313

1414
NAME = "phasetwo-sdk"
15-
VERSION = "0.1.1"
15+
VERSION = "0.2.0"
1616
# To install the library, run the following
1717
#
1818
# python setup.py install
@@ -25,7 +25,7 @@
2525
"frozendict ~= 2.3.4",
2626
"python-dateutil ~= 2.7.0",
2727
"setuptools >= 21.0.0",
28-
"typing_extensions ~= 4.3.0",
28+
"typing_extensions >= 4.5.0",
2929
"urllib3 ~= 1.26.7",
3030
]
3131

0 commit comments

Comments
 (0)