-
Notifications
You must be signed in to change notification settings - Fork 37
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Incorrect Django requirements on readme #51
Comments
I agree, after many testings, Appraise only works perfectly on Django 1.4.2 |
Appraise is definitely running on a Django 1.4.20 version. I'm currently finishing the Django 1.9.6 version which will should be ready in the coming weeks. That will be the best way forward :) |
Hello,
Using the URLconf defined in appraise.urls, Django tried these URL patterns, in this order:
The current URL, appraise/admin/evaluation/evaluationtask/add/, didn't match any of these. |
I've downloaded the current version, and the problem reported above by @jmcoursi persists.
UPDATE: to fix it, install django using the following command
Does anyone know how to solve this issue? |
Hi all, Here's more details conda create --name Appraise python=2
source activate Appraise
pip install patterns
pip install --no-cache-dir --no-binary Django django==1.4.22
git clone git://github.com/cfedermann/Appraise.git Appraise-Software
cd Appraise-Software/appraise
python manage.py syncdb
python manage.py collectstatic
python manage.py runserver 8888 |
Readme states Appraise should work with Django >1.3, but it does not work with any 1.3 version, because certain symbols imported on urls.py were on django.conf.urls.default on 1.3, but on django.conf.urls on >1.4.
Also, it does not work with >1.5, because the patterns api changed. There is also an open issue with 1.6.
To my best knowledge, it only works with 1.4.20, that will be supported until October 2015.
Can you update the readme to reflect this?
The text was updated successfully, but these errors were encountered: