aboutsummaryrefslogtreecommitdiffstats
path: root/requirements.txt
AgeCommit message (Collapse)Author
2018-05-04rrs_upstream_email: reworkPaul Eggleton
* Use maintenance plans to get layerbranches * Use from/to/subject and admin contact from maintenance plan * Use an actual template to render the email (and drop tabulate dependency) * Improve grammar in the email text * Use a single line to represent the most recent commit Signed-off-by: Paul Eggleton <paul.eggleton@linux.intel.com>
2018-05-04requirements: Add tabular.Aníbal Limón
Signed-off-by: Aníbal Limón <anibal.limon@linux.intel.com>
2018-05-04requirements.txt: fix some conflicting requirementsPaul Eggleton
pip (strangely only in the python 2 version when I test it here) reports that some of the versions in requirements.txt were incompatible: django-nvd3 0.9.7 has requirement python-nvd3==0.14.2, but you'll have python-nvd3 0.15.0 which is incompatible. django-registration 2.4.1 has requirement confusable-homoglyphs~=3.0, but you'll have confusable-homoglyphs 2.0.2 which is incompatible. python-nvd3 0.14.2 has requirement python-slugify==1.1.4, but you'll have python-slugify 1.2.5 which is incompatible. I'm not particularly keen on downgrading these but it seems like we don't have much choice. Luckily looking over the changelogs it doesn't seem like that will cause us any problems though. Thanks to Yi Zhao <yi.zhao@windriver.com> for pointing this out. Signed-off-by: Paul Eggleton <paul.eggleton@linux.intel.com>
2018-05-01requirements.txt: bump Django and other dependency versionsPaul Eggleton
Since Django 1.8 is now out of support, and we've cleaned up the issues, bump the Django requirement to 1.11 and update other dependencies at the same time. Fixes [YOCTO #12696] (requires preceding commits) Signed-off-by: Paul Eggleton <paul.eggleton@linux.intel.com>
2018-03-26requirements.txt: use the most recent Django 1.8 versionPaul Eggleton
Use <1.9 to always get the most recent 1.8 point release. Signed-off-by: Paul Eggleton <paul.eggleton@linux.intel.com>
2018-02-20requirements.txt: update some dependency versionsPaul Eggleton
Use latest tested versions (though we pin djangorestframework at 3.6.4 since that is the last version that supports Django 1.8), and add new resulting dependencies. Signed-off-by: Paul Eggleton <paul.eggleton@linux.intel.com>
2018-02-20requirements.txt: add missing dependenciesPaul Eggleton
These are dependencies of items already listed in requirements.txt, so nothing new. Signed-off-by: Paul Eggleton <paul.eggleton@linux.intel.com>
2017-09-01Asynchronous email notifications, task executionDiana Thayer
This patch adds asynchronous task execution using a Celery backend and RabbitMQ task queue, so that the layer submission process to proceed even in the event that sending the notification email fails, and establishing an asynchronous execution mechanism that we can use in the future e.g. for triggering parse operations from the web UI. This pertains to bug 11197: https://bugzilla.yoctoproject.org/show_bug.cgi?id=11197 It updates the README to reflect the installation and configuration of a basic RabbitMQ setup, adds a 'tasks.py' file to contain task definitions, updates the 'edit_layer_view' function to send emails to administrators about new and updated layers asynchronously, modifies the 'settings.py' to include a default configuration for a RabbitMQ connection, and updates the Dockerfile to start a Celery worker alongside the Gunicorn daemon. Fixes [YOCTO #11197]. Signed-off-by: Diana Thayer <garbados@gmail.com> Signed-off-by: Paul Eggleton <paul.eggleton@linux.intel.com>
2017-01-16requirements.txt: update to latest tested Django versionPaul Eggleton
I neglected to update this at the time I updated the README recently. Signed-off-by: Paul Eggleton <paul.eggleton@linux.intel.com>
2016-09-20Update to Django 1.8Paul Eggleton
Signed-off-by: Paul Eggleton <paul.eggleton@linux.intel.com>
2016-09-20Drop south migrationsPaul Eggleton
These cannot be used with Django 1.8 and thus we need to remove them. Signed-off-by: Paul Eggleton <paul.eggleton@linux.intel.com>
2016-06-12Upgrade to Django 1.6+Paul Eggleton
I'd like to be upgrading to 1.8 but that causes problems with South, and we're not quite ready to dispense with our existing migrations yet. Part of the implementation for [YOCTO #9620]. Signed-off-by: Paul Eggleton <paul.eggleton@linux.intel.com>
2015-10-07requirements.txt: added GitPythonAlex Franco
As it is needed for layerindex anyway [YOCTO #7575] Signed-off-by: Alex Franco <alejandro.franco@linux.intel.com>
2014-09-24adding CORS policy for the APIAlexandru DAMIAN
We add the corsheaders application in order to enable the CORS policy for the read-only REST API. This is needed to allow AJAX queries to the layerindex application from a browser environment. Signed-off-by: Alexandru DAMIAN <alexandru.damian@intel.com>
2014-09-24expose REST API for layerindexAlexandru DAMIAN
This patch enables a read-only REST API for the layerindex application using Django REST Framework. The objects of types Branch, LayerBranch and LayerItem are exposed to queries so that the layerindex application can function as a Layer Source in Toaster. The library dependencies are documented in the requirements.txt file. Signed-off-by: Alexandru DAMIAN <alexandru.damian@intel.com>
2014-09-24adding environment description for virtualenvAlexandru DAMIAN
General practice influenced by heroku.com is to create a requirements.txt documenting the python library dependencies for the project. This allows a user to easy setup a running environment for the project using virtualenv and pip. Extending .gitignore to ignore venv (reserved for virtualenv use) and vim swap files. Signed-off-by: Alexandru DAMIAN <alexandru.damian@intel.com>