drf-extensions: version 0.3.1 is not compatible with DRF 3.8 and produces ImportError
The version 0.3.1 is not compatible with DRF 3.8. It seems that the master is, but the latest provided release to PyPI apparently not.
It produces an import error in the 0.3.1 code
Error:
...
File ".../site-packages/rest_framework_extensions/routers.py", line 7, in <module>
from rest_framework.routers import (
ImportError: cannot import name 'replace_methodname'
Culprit code of 0.3.1
# -*- coding: utf-8 -*-
from distutils.version import StrictVersion
from django.core.exceptions import ImproperlyConfigured
from django.core.urlresolvers import NoReverseMatch
import rest_framework
from rest_framework.routers import (
DefaultRouter,
SimpleRouter,
Route,
replace_methodname,
^^^^^^^^^^^^^^^^^^^
)
About this issue
- Original URL
- State: closed
- Created 6 years ago
- Comments: 15
Can you add instructions for installing from git to the README at least?
i have emailed the original author for a new pypi release.
0.4.0 has been released 15 hours ago. Thanks
Same issue here, Still waiting for a new version. Do you have an ETA?