-
Notifications
You must be signed in to change notification settings - Fork 276
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
windows package within requirements.txt #1133
Comments
I also stumbled upon this yesterday. But I don't think splitting Instead it is possible to change the line in However, the current code in I haven't looked deeply into |
TIL |
Ok I had a look on The only drawback would be that Linux users of ldap3 need a working Kerberos system package (either MIT or Heimdal) Otherwise installing the Python package Alternatively, an extras_require={
"kerberos": [
"winkerberos; platform_system=='Windows'",
"gssapi; platform_system!='Windows'",
],
}, Those who need Kerberos support could then Probably the Just wanted to point out the solutions I see. Someone, probably @cannatag, needs to decide how the ldap3 package should behave. |
Hello @cannatag!
Since 5c10be6 it is no longer possible to install ldap3 via
pip install -r requirements.txt
on linux because of thewinkerberos
package. Is it possible to revert the change or split requirements.txt in two files?🌻
The text was updated successfully, but these errors were encountered: