django-rest-framework-proxy icon indicating copy to clipboard operation
django-rest-framework-proxy copied to clipboard

Release python 3 auth fix on PyPI

Open rooterkyberian opened this issue 8 years ago • 2 comments

Current PyPI version 1.6.0 is broken when using "AUTH" on python 3. This was fixed when https://github.com/eofs/django-rest-framework-proxy/pull/16 was merged to master, but it was not yet released.

In the mean time I'm using following workaround to get it working under python 3:

setup(
    ...
    install_requires=[
        ...
        'django-rest-framework-proxy >= 1.6.0',
        ...
    ],
    dependency_links=[
        'git+ssh://[email protected]/eofs/django-rest-framework-proxy.git'
        '@624823b4#egg=django-rest-framework-proxy-1.6.0',
    ],
)

rooterkyberian avatar Jul 10 '17 10:07 rooterkyberian

I have a same issue since I'm using this on python 3. I hope the next version will be released soon.

mmasashi avatar Sep 14 '17 00:09 mmasashi

Also using python 3 with django rest framework proxy, wait for a new release on PyPi

dekabrist89 avatar Jan 23 '18 18:01 dekabrist89