Skip to content

Commit ad69540

Browse files
authored
FFM-11655 Pin typing_extensions to latest release compatible with 3.7 (#98)
* FFM-11655 Pin typing_extensions to latest release compatible with 3.7 * FFM-11655 1.6.3 version bump
1 parent 8295c22 commit ad69540

File tree

5 files changed

+6
-6
lines changed

5 files changed

+6
-6
lines changed

featureflags/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,4 @@
22

33
__author__ = """Harness"""
44
__email__ = "[email protected]"
5-
__version__ = '1.6.2'
5+
__version__ = '1.6.3'

featureflags/analytics.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@
3939
VARIATION_VALUE_ATTRIBUTE = 'variationValue'
4040
TARGET_ATTRIBUTE = 'target'
4141
SDK_VERSION_ATTRIBUTE = 'SDK_VERSION'
42-
SDK_VERSION = '1.6.2'
42+
SDK_VERSION = '1.6.3'
4343
SDK_TYPE_ATTRIBUTE = 'SDK_TYPE'
4444
SDK_TYPE = 'server'
4545
SDK_LANGUAGE_ATTRIBUTE = 'SDK_LANGUAGE'

featureflags/client.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
from .streaming import StreamProcessor
2424
from .util import log
2525

26-
VERSION: str = "1.6.2"
26+
VERSION: str = "1.6.3"
2727

2828

2929
class MissingOrEmptyAPIKeyException(Exception):

setup.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[bumpversion]
2-
current_version = 1.6.2
2+
current_version = 1.6.3
33
commit = True
44
tag = True
55

setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
"mmh3>=3.0.0",
2020
"requests>=2.31.0",
2121
"tenacity==8.2.2",
22-
"typing_extensions==4.12.2"
22+
"typing_extensions==4.7.1"
2323
]
2424

2525
setup_requirements = [
@@ -58,6 +58,6 @@
5858
test_suite="tests",
5959
tests_require=test_requirements,
6060
url="https://github.com/harness/ff-python-server-sdk",
61-
version='1.6.2',
61+
version='1.6.3',
6262
zip_safe=False,
6363
)

0 commit comments

Comments
 (0)