voicesauce / opensauce-python

Voice analysis software (Python port of VoiceSauce)
Apache License 2.0
53 stars 16 forks source link

Python 3.6 ImportWarning from Cython #30

Closed terriyu closed 5 years ago

terriyu commented 6 years ago

When running the REAPER tests (via the command python -m unittest test.test_reaper), there is an ImportWarning of the form:

.../lib/python3.6/importlib/_bootstrap.py:219: ImportWarning: can't resolve package from __spec__ or __package__, falling back on __name__ and __path__
  return f(*args, **kwds)

Apparently, this warning comes from Cython upstream, so we can't fix it in our code. We'll have to wait for it to be fixed in a future Cython release. For more details, see this AstroPy report.

terriyu commented 5 years ago

I'm no longer seeing this warning. I don't see it in testing on my local machine or in the Travis continuous integration testing. I assume the problem was fixed upstream, so I can close the issue now.