AndrewIngram / django-extra-views

Django's class-based generic views are awesome, let's have more of them.
MIT License
1.38k stars 172 forks source link

Version 0.12.0 not being installed with pip #172

Closed goromachine closed 5 years ago

goromachine commented 5 years ago

While using the following pip command:

pip install django-extra-views

It installs the v.0.11.0 and I don't have the 'Factory' changes, so I can't use InlineFormSetFactory and InlineFormSet does not work and gives the following exception:

Setting MediaInline.extra at the class level is now deprecated. Set MediaInline.factory_kwargs instead.

I tried uninstalling that version and then installing using the other command:

pip install -e git://github.com/AndrewIngram/django-extra-views.git#egg=django-extra-views

But doing this Django does not detect the 'import extra-views'.

I've seen on the changelog that you made the version 0.12.0 with the corresponding solution, but I don't have any way using pip to install this version.

fergbrain commented 5 years ago

For what it's worth, installing using pip install -e git://github.com/AndrewIngram/django-extra-views.git#egg=django-extra-views worked for me.

sdolemelipone commented 5 years ago

Looks like we just need to perform a release! My mistake, that should have been version 0.12b to indicate the release hadn't been done. I'll put together a PR now.