-
-
Notifications
You must be signed in to change notification settings - Fork 4.4k
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
Remove unittest2 imports #1490
Remove unittest2 imports #1490
Conversation
This is related to issue conda-forge/staged-recipes#3225 regarding running tests in conda-forge. I believe the tests in conda-forge should pass once we have the patch merged and a new version released later. |
import unittest2 as unittest | ||
import sys | ||
|
||
if sys.version_info < (2, 7): |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@souravsingh now we don't support Python version that older than 2.7, you no need this if
@menshikh-iv Can you take a look at the PR? Since Gensim uses Python 2.7, Do we have to remove |
@souravsingh yes, we should to replace |
Thanks @souravsingh 👍 |
No description provided.