-
Notifications
You must be signed in to change notification settings - Fork 4
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
Support Python 3.5 #95
Comments
As of now, mockldap, which is used for our LDAP unit tests, uses python-ldap on 2.7, but uses pyldap on 3.5. Since python-ldap doesn't support Python 3.5, we are in a situation where we are stuck supporting only one version of Python. |
With the new LTS Ubuntu 16 supporting 3.5 out of box, I'm more comfortable with dropping 2.7 support in favor of 3.5. I also dislike that one of our testing libraries is what is holding us back from supporting both 2.7 and 3.5. Maybe we can find a different library or fork? Thoughts? |
@thatarchguy, a fork might be a good idea. We could also just go ahead and convert entirely to 3.5 and leave behind 2.7. |
ldap3 supports python 2 & 3. It adds a few benefits:
|
That solves it right there. Mock-ldap is holding us back. |
#176 addresses some of the issues. The next step would be to migrate to ldap3. |
This issue has the Python 2 was sunset 1st Jan 2020 and Python 3.5 became EOL 13th Sept 2020, by the way... |
PostMaster currently supports 2.7 but an effort should take place to support both 2.7 and 3.5
The text was updated successfully, but these errors were encountered: