Skip to content

Commit ac54e59

Browse files
authored
Merge pull request #546 from splitio/development
Release 10.1.0
2 parents 715d5bc + 6b675a4 commit ac54e59

File tree

10 files changed

+609
-57
lines changed

10 files changed

+609
-57
lines changed

.github/workflows/ci.yml

+1
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,7 @@ jobs:
3535

3636
- name: Install dependencies
3737
run: |
38+
sudo apt-get install -y libkrb5-dev
3839
pip install -U setuptools pip wheel
3940
pip install -e .[cpphash,redis,uwsgi]
4041

CHANGES.txt

+3
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
10.1.0 (Aug 7, 2024)
2+
- Added support for Kerberos authentication in Spnego and Proxy Kerberos server instances.
3+
14
10.0.1 (Jun 28, 2024)
25
- Fixed failure to load lib issue in SDK startup for Python versions higher than or equal to 3.10
36

setup.py

+4-2
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,8 @@
1616
'attrs==22.1.0',
1717
'pytest-asyncio==0.21.0',
1818
'aiohttp>=3.8.4',
19-
'aiofiles>=23.1.0'
19+
'aiofiles>=23.1.0',
20+
'requests-kerberos>=0.15.0'
2021
]
2122

2223
INSTALL_REQUIRES = [
@@ -46,7 +47,8 @@
4647
'redis': ['redis>=2.10.5'],
4748
'uwsgi': ['uwsgi>=2.0.0'],
4849
'cpphash': ['mmh3cffi==0.2.1'],
49-
'asyncio': ['aiohttp>=3.8.4', 'aiofiles>=23.1.0']
50+
'asyncio': ['aiohttp>=3.8.4', 'aiofiles>=23.1.0'],
51+
'kerberos': ['requests-kerberos>=0.15.0']
5052
},
5153
setup_requires=['pytest-runner', 'pluggy==1.0.0;python_version<"3.8"'],
5254
classifiers=[

0 commit comments

Comments
 (0)