Based on my app I need the django-microblogging==0.2.dev1
package, but when I put that in requirements.txt, it can't find this particular version.
And when I use the version it can find (an older version), I get errors with my application and I believe it's due to this older version.
I was able to google the 0.2.dev1 version and downloaded the source which I found here: http://dist.pinaxproject.com/dev/django-microblogging/
I untarred it and put the following in my requirements.txt file: -I ./django-microblogging-0.2.dev1
But now I'm getting the following error message:
ValueError: ('Expected version spec in', '-I ./django-microblogging-0.2.dev1', 'at', ' ./django-microblogging-0.2.dev1')
I have also tried -I ./django-microblogging-0.2.dev1 == 0.2.dev1
Does anyone have any idea how I can correct this error? It's totally stumping me.