Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,6 @@ Development information (for developing this module itself)

pip install -r requirements.txt
pip install -r test-requirements.txt
pip install -r twisted-requirements.txt

1. Run tests: You'll need redis running locally on its default port of 6379.

Expand Down
1 change: 0 additions & 1 deletion MANIFEST.in
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
include requirements.txt
include README.txt
include test-requirements.txt
include twisted-requirements.txt
include redis-requirements.txt
1 change: 0 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,6 @@ About LaunchDarkly
* [Node.JS] (http://docs.launchdarkly.com/docs/node-sdk-reference "LaunchDarkly Node SDK")
* [.NET] (http://docs.launchdarkly.com/docs/dotnet-sdk-reference "LaunchDarkly .Net SDK")
* [Ruby] (http://docs.launchdarkly.com/docs/ruby-sdk-reference "LaunchDarkly Ruby SDK")
* [Python Twisted] (http://docs.launchdarkly.com/docs/python-twisted "LaunchDarkly Python Twisted SDK")
* Explore LaunchDarkly
* [launchdarkly.com] (https://launchdarkly.com/ "LaunchDarkly Main Website") for more information
* [docs.launchdarkly.com] (http://docs.launchdarkly.com/ "LaunchDarkly Documentation") for our documentation and SDKs
Expand Down
4 changes: 0 additions & 4 deletions circle.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,10 +11,6 @@ dependencies:
- pyenv shell 3.3.3; $(pyenv which pip) install -r test-requirements.txt
- pyenv shell 3.4.2; $(pyenv which pip) install -r test-requirements.txt

- pyenv shell 2.7.10; $(pyenv which pip) install -r twisted-requirements.txt
- pyenv shell 3.3.3; $(pyenv which pip) install -r twisted-requirements.txt
- pyenv shell 3.4.2; $(pyenv which pip) install -r twisted-requirements.txt

- pyenv shell 2.7.10; $(pyenv which python) setup.py install
- pyenv shell 3.3.3; $(pyenv which python) setup.py install
- pyenv shell 3.4.2; $(pyenv which python) setup.py install
Expand Down
21 changes: 0 additions & 21 deletions demo/demo_twisted.py

This file was deleted.

6 changes: 0 additions & 6 deletions ldclient/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -59,9 +59,3 @@ def emit(self, record):
else:
# noinspection PyUnresolvedReferences
__BASE_TYPES__ = (str, float, int, bool, unicode)


try:
from .twisted_impls import *
except ImportError:
pass
181 changes: 0 additions & 181 deletions ldclient/twisted_impls.py

This file was deleted.

Loading