Skip to content

Commit

Permalink
Merge pull request #546 from splitio/development
Browse files Browse the repository at this point in the history
Release 10.1.0
  • Loading branch information
chillaq authored Aug 7, 2024
2 parents 715d5bc + 6b675a4 commit ac54e59
Show file tree
Hide file tree
Showing 10 changed files with 609 additions and 57 deletions.
1 change: 1 addition & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,7 @@ jobs:

- name: Install dependencies
run: |
sudo apt-get install -y libkrb5-dev
pip install -U setuptools pip wheel
pip install -e .[cpphash,redis,uwsgi]
Expand Down
3 changes: 3 additions & 0 deletions CHANGES.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
10.1.0 (Aug 7, 2024)
- Added support for Kerberos authentication in Spnego and Proxy Kerberos server instances.

10.0.1 (Jun 28, 2024)
- Fixed failure to load lib issue in SDK startup for Python versions higher than or equal to 3.10

Expand Down
6 changes: 4 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,8 @@
'attrs==22.1.0',
'pytest-asyncio==0.21.0',
'aiohttp>=3.8.4',
'aiofiles>=23.1.0'
'aiofiles>=23.1.0',
'requests-kerberos>=0.15.0'
]

INSTALL_REQUIRES = [
Expand Down Expand Up @@ -46,7 +47,8 @@
'redis': ['redis>=2.10.5'],
'uwsgi': ['uwsgi>=2.0.0'],
'cpphash': ['mmh3cffi==0.2.1'],
'asyncio': ['aiohttp>=3.8.4', 'aiofiles>=23.1.0']
'asyncio': ['aiohttp>=3.8.4', 'aiofiles>=23.1.0'],
'kerberos': ['requests-kerberos>=0.15.0']
},
setup_requires=['pytest-runner', 'pluggy==1.0.0;python_version<"3.8"'],
classifiers=[
Expand Down
Loading

0 comments on commit ac54e59

Please sign in to comment.