This repository was archived by the owner on Apr 19, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 217
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Since installing the python-krbV dependency requires the kerberos libraries to be installed, this commit makes kerberos/sasl support optional at time of installation. To install snakebite with sasl/kerberos support run: pip install "snakebite[kerberos]" This triggers the installation of the sasl and python-krbV dependendies. In the client, sasl and kerberos are only included when the client is explicitly configured with SASL.
- Loading branch information
Wouter de Bie
committed
Sep 24, 2015
1 parent
30d84ce
commit 6c61271
Showing
6 changed files
with
31 additions
and
11 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,9 @@ | ||
snakebite (2.7.0) unstable; urgency=low | ||
|
||
* Make kerberos/sasl optional in python packaging | ||
|
||
-- Wouter de Bie <[email protected]> Tue, 24 Sep 2015 13:12:25 -0000 | ||
|
||
snakebite (2.6.1) unstable; urgency=low | ||
|
||
* Wraps use of the Python 'pwd' module in a utility procedure for Windows compatibility | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,2 @@ | ||
argparse | ||
protobuf>2.4.1 | ||
sasl | ||
python-krbV | ||
protobuf>2.4.1 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
VERSION = "2.6.1" | ||
VERSION = "2.7.0" | ||
|
||
|
||
def version(): | ||
|