Skip to content

Commit 1ca04cf

Browse files
LaunchDarklyReleaseBotLaunchDarklyCIeli-darklyhroederldrobertjneal
authored
prepare 8.1.7 release (#222)
## [8.1.7] - 2023-10-05 ### Changed: - Loosened urllib3 requirement to <3 --------- Co-authored-by: LaunchDarklyCI <[email protected]> Co-authored-by: LaunchDarklyCI <[email protected]> Co-authored-by: Eli Bishop <[email protected]> Co-authored-by: hroederld <[email protected]> Co-authored-by: Robert J. Neal <[email protected]> Co-authored-by: Robert J. Neal <[email protected]> Co-authored-by: Ben Woskow <[email protected]> Co-authored-by: Ember Stevens <[email protected]> Co-authored-by: ember-stevens <[email protected]> Co-authored-by: Matthew M. Keeler <[email protected]> Co-authored-by: charukiewicz <[email protected]> Co-authored-by: LaunchDarklyReleaseBot <[email protected]> Co-authored-by: Christian Charukiewicz <[email protected]> Co-authored-by: Matthew M. Keeler <[email protected]> Co-authored-by: Ben Woskow <[email protected]> Co-authored-by: Gavin Whelan <[email protected]> Co-authored-by: Elliot <[email protected]> Co-authored-by: Gabor Angeli <[email protected]> Co-authored-by: Elliot <[email protected]> Co-authored-by: Louis Chan <[email protected]> Co-authored-by: prpnmac <[email protected]> Co-authored-by: Louis Chan <[email protected]> Co-authored-by: Daniel Fritz <[email protected]>
1 parent 540e64b commit 1ca04cf

File tree

7 files changed

+16
-7
lines changed

7 files changed

+16
-7
lines changed

.circleci/config.yml

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -136,7 +136,15 @@ jobs:
136136
- checkout
137137
- run:
138138
name: install Python 3
139-
command: choco install python --no-progress
139+
command: |
140+
choco install pyenv-win --force
141+
refreshenv
142+
pyenv install 3.11.0b3
143+
pyenv global 3.11.0b3
144+
[System.Environment]::SetEnvironmentVariable('PYENV',$env:USERPROFILE + "\.pyenv\pyenv-win\","User")
145+
[System.Environment]::SetEnvironmentVariable('PYENV_ROOT',$env:USERPROFILE + "\.pyenv\pyenv-win\","User")
146+
[System.Environment]::SetEnvironmentVariable('PYENV_HOME',$env:USERPROFILE + "\.pyenv\pyenv-win\","User")
147+
[System.Environment]::SetEnvironmentVariable('path', $env:USERPROFILE + "\.pyenv\pyenv-win\bin;" + $env:USERPROFILE + "\.pyenv\pyenv-win\shims;" + [System.Environment]::GetEnvironmentVariable('path', "User"),"User")
140148
- run: python --version
141149
- run:
142150
name: set up DynamoDB

CODEOWNERS

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1,2 @@
1-
1+
# Repository Maintainers
2+
* @launchdarkly/team-sdk-python

contract-tests/requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
Flask==2.3.2
2-
urllib3>=1.22.0
2+
urllib3>=1.22.0,<3

docs/requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,4 +8,4 @@ expiringdict>=1.1.4
88
pyRFC3339>=1.0
99
jsonpickle==0.9.3
1010
semver>=2.7.9
11-
urllib3>=1.22.0
11+
urllib3>=1.22.0,<3

ldclient/config.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -222,7 +222,7 @@ def __init__(self,
222222
ignored if this option is set to true. By default, this is false.
223223
For more information, read the LaunchDarkly
224224
documentation: https://docs.launchdarkly.com/home/relay-proxy/using#using-daemon-mode
225-
:param array private_attribute: Marks a set of attributes private. Any users sent to LaunchDarkly
225+
:param array private_attributes: Marks a set of attributes private. Any users sent to LaunchDarkly
226226
with this configuration active will have these attributes removed. Each item can be either the
227227
name of an attribute ("email"), or a slash-delimited path ("/address/street") to mark a
228228
property within a JSON object value as private.

requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,4 @@ certifi>=2018.4.16
22
expiringdict>=1.1.4
33
pyRFC3339>=1.0
44
semver>=2.10.2
5-
urllib3>=1.22.0,<2.0.0
5+
urllib3>=1.22.0,<3

sse-contract-tests/requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
Flask==2.3.2
2-
urllib3>=1.22.0
2+
urllib3>=1.22.0,<3

0 commit comments

Comments
 (0)