Skip to content

Commit bbeebc0

Browse files
authored
Merge pull request #212 from splitio/update/setup_changes
update changes and setup.py
2 parents 4d66ad9 + ea13467 commit bbeebc0

File tree

2 files changed

+9
-5
lines changed

2 files changed

+9
-5
lines changed

CHANGES.txt

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,14 @@
1+
8.3.0 (Nov 4, 2020)
2+
- Added local impressions deduping. Defaulting to optimized
3+
- Added support for the new Split streaming architecture. When enabled (default), the SDK will not poll for updates but instead receive notifications every time there's a change in your environments, allowing to process those much quicker. If disabled or in the event of an issue, the SDK will fallback to the known polling mechanism to provide a seamless experience.
4+
- Updated logging structure so that it's built in terms of a hierarchy with the root at 'splitio'
5+
- Fixed timing issue which caused factory.ready to return False if called immediately after .block_until_ready()
6+
17
8.2.1 (Aug 25, 2020)
2-
- Use mmh3cffi=0.1.5 which fixes xcode12 issue
8+
- Updated mmh3cffi to version 0.1.5 which fixes xcode12 issue
39

410
8.2.0 (Mar 27, 2020)
5-
- Support enabling in-memory cache via config options
11+
- Added support for enabling in-memory cache via config options
612

713
8.1.7 (Jan 23, 2020)
814
- Removed enum34 dependency for python versions > 3.4

setup.py

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -37,13 +37,11 @@
3737
license='Apache License 2.0',
3838
install_requires=INSTALL_REQUIRES,
3939
tests_require=TESTS_REQUIRES,
40-
# dependency_links=['https://github.com/splitio/mmh3cffi/tarball/feature/development#egg=mmh3cffi-0.2.0'],
4140
extras_require={
4241
'test': TESTS_REQUIRES,
4342
'redis': ['redis>=2.10.5'],
4443
'uwsgi': ['uwsgi>=2.0.0'],
45-
# 'cpphash': ['mmh3cffi==0.2.0']
46-
'cpphash': ['mmh3cffi@git+https://github.com/splitio/mmh3cffi@development#egg=mmh3cffi']
44+
'cpphash': ['mmh3cffi==0.2.0'],
4745
},
4846
setup_requires=['pytest-runner'],
4947
classifiers=[

0 commit comments

Comments
 (0)