Skip to content

Commit 454955c

Browse files
authored
Merge pull request #15 from splitio/3.1.9
3.1.9 - Updated to fix issues with the HTTP error messages as well as fixing issues with the to_dict() methods of the Segment, Segment Definition and Split Definition objects
2 parents ef12f91 + 617e743 commit 454955c

20 files changed

+224
-50
lines changed

CHANGES.txt

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,4 +26,6 @@
2626
- Added `comment` and `title` as optional parameters for the `remove_from_environment` method of a Split
2727
- Updated default logging to be more useful
2828
3.1.8 (Jun 29nd, 2023)
29-
- Added suggestedValues for attributes
29+
- Added suggestedValues for attributes
30+
3.1.9 (Sept 7th, 2023)
31+
- Fixed `to_dict()` method for Segments, Segment Definitions and Split Definitions

bin/activate

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ deactivate () {
3838
# unset irrelevant variables
3939
deactivate nondestructive
4040

41-
VIRTUAL_ENV="/Users/joshuaklein/code/py_add_suggest_values/python-api"
41+
VIRTUAL_ENV="/Users/joshuaklein/code/py_fix_splitDef_dict/python-api"
4242
export VIRTUAL_ENV
4343

4444
_OLD_VIRTUAL_PATH="$PATH"

bin/activate.csh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ alias deactivate 'test $?_OLD_VIRTUAL_PATH != 0 && setenv PATH "$_OLD_VIRTUAL_PA
88
# Unset irrelevant variables.
99
deactivate nondestructive
1010

11-
setenv VIRTUAL_ENV "/Users/joshuaklein/code/py_add_suggest_values/python-api"
11+
setenv VIRTUAL_ENV "/Users/joshuaklein/code/py_fix_splitDef_dict/python-api"
1212

1313
set _OLD_VIRTUAL_PATH="$PATH"
1414
setenv PATH "$VIRTUAL_ENV/bin:$PATH"

bin/activate.fish

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ end
3333
# Unset irrelevant variables.
3434
deactivate nondestructive
3535

36-
set -gx VIRTUAL_ENV "/Users/joshuaklein/code/py_add_suggest_values/python-api"
36+
set -gx VIRTUAL_ENV "/Users/joshuaklein/code/py_fix_splitDef_dict/python-api"
3737

3838
set -gx _OLD_VIRTUAL_PATH $PATH
3939
set -gx PATH "$VIRTUAL_ENV/bin" $PATH

bin/pip

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#!/Users/joshuaklein/code/py_add_suggest_values/python-api/bin/python3.11
1+
#!/Users/joshuaklein/code/py_fix_splitDef_dict/python-api/bin/python3.11
22
# -*- coding: utf-8 -*-
33
import re
44
import sys

bin/pip3

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#!/Users/joshuaklein/code/py_add_suggest_values/python-api/bin/python3.11
1+
#!/Users/joshuaklein/code/py_fix_splitDef_dict/python-api/bin/python3.11
22
# -*- coding: utf-8 -*-
33
import re
44
import sys

bin/pip3.11

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#!/Users/joshuaklein/code/py_add_suggest_values/python-api/bin/python3.11
1+
#!/Users/joshuaklein/code/py_fix_splitDef_dict/python-api/bin/python3.11
22
# -*- coding: utf-8 -*-
33
import re
44
import sys

pyvenv.cfg

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
home = /usr/local/opt/[email protected]/bin
22
include-system-site-packages = false
33
version = 3.11.4
4-
executable = /usr/local/Cellar/[email protected]/3.11.4/Frameworks/Python.framework/Versions/3.11/bin/python3.11
5-
command = /usr/local/opt/[email protected]/bin/python3.11 -m venv /Users/joshuaklein/code/py_add_suggest_values/python-api
4+
executable = /usr/local/Cellar/[email protected]/3.11.4_1/Frameworks/Python.framework/Versions/3.11/bin/python3.11
5+
command = /usr/local/opt/[email protected]/bin/python3.11 -m venv /Users/joshuaklein/code/py_fix_splitDef_dict/python-api

setup.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ addopts = --verbose
66

77
[metadata]
88
name = splitapiclient
9-
version = 3.1.8
9+
version = 3.1.9
1010
description = This Python Library provide full support for Split REST Admin API, allow creating, deleting and editing Environments, Splits, Split Definitions, Segments, Segment Keys, Users, Groups, API Keys, Change Requests, Attributes and Identities
1111
long_description = file: README.md
1212
long_description_content_type = text/markdown

setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -112,8 +112,8 @@ def run(self):
112112
description='This Python Library provide full support for Split REST Admin API',
113113
long_description=(this_directory / "README.md").read_text(),
114114
long_description_content_type='text/markdown',
115-
author='Patricio Echague, Sebastian Arrubia, Martin Redolatti',
116-
115+
author='Patricio Echague, Sebastian Arrubia, Martin Redolatti, Josh Klein, Bilal Al-Shawany',
116+
117117
url='https://github.com/splitio/python-api',
118118
download_url=(
119119
'https://github.com/splitio/python-api/tarball/' + __version__

0 commit comments

Comments
 (0)