Skip to content

Commit 9380d4b

Browse files
authored
Merge branch 'master' into admin-api-key-add-scopes
2 parents 5aead18 + 454955c commit 9380d4b

19 files changed

+230
-42
lines changed

CHANGES.txt

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,5 +27,8 @@
2727
- Updated default logging to be more useful
2828
3.1.8 (Jun 29nd, 2023)
2929
- Added suggestedValues for attributes
30-
3.1.9 (Aug 18, 2023)
31-
- Added scope options for admin api
30+
3.1.9 (Sept 7th, 2023)
31+
- Fixed `to_dict()` method for Segments, Segment Definitions and Split Definitions
32+
3.1.10 (Aug 18, 2023)
33+
- Added scope options for admin api
34+

bin/activate

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,7 @@ deactivate () {
3939
deactivate nondestructive
4040

4141
VIRTUAL_ENV="/Users/joshuaklein/code/py_add_scopes/python-api"
42+
4243
export VIRTUAL_ENV
4344

4445
_OLD_VIRTUAL_PATH="$PATH"

bin/activate.csh

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

11+
1112
setenv VIRTUAL_ENV "/Users/joshuaklein/code/py_add_scopes/python-api"
1213

14+
1315
set _OLD_VIRTUAL_PATH="$PATH"
1416
setenv PATH "$VIRTUAL_ENV/bin:$PATH"
1517

bin/activate.fish

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -33,8 +33,10 @@ end
3333
# Unset irrelevant variables.
3434
deactivate nondestructive
3535

36+
3637
set -gx VIRTUAL_ENV "/Users/joshuaklein/code/py_add_scopes/python-api"
3738

39+
3840
set -gx _OLD_VIRTUAL_PATH $PATH
3941
set -gx PATH "$VIRTUAL_ENV/bin" $PATH
4042

bin/pip

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,6 @@
1+
12
#!/Users/joshuaklein/code/py_add_scopes/python-api/bin/python3.11
3+
24
# -*- coding: utf-8 -*-
35
import re
46
import sys

bin/pip3

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,6 @@
1+
12
#!/Users/joshuaklein/code/py_add_scopes/python-api/bin/python3.11
3+
24
# -*- coding: utf-8 -*-
35
import re
46
import sys

bin/pip3.11

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,6 @@
1+
12
#!/Users/joshuaklein/code/py_add_scopes/python-api/bin/python3.11
3+
24
# -*- coding: utf-8 -*-
35
import re
46
import sys

pyvenv.cfg

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

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)