We are currently running this plugin from a has directly off of master to get support for a newer version of DJDT. However even on master there is not yet support for python 3. We're running into this when running runserver and when collecting static assets. A quick survey of the development team at edX shows that people are no longer actively using this debug panel.(14 responders all saying no to the question "In the last year have you used the mongo portion of the django-debug-toolbar in edx-platform?") This makes sense since the module store and courseware related developement is not very active right now. Given all this, I'm removing this toolbar for now and if we need it again we can survey what's available at that time to choose the best tool.
23 lines
1.4 KiB
Plaintext
23 lines
1.4 KiB
Plaintext
# Dependencies that are used in development environments.
|
|
# Please do not use this file for packages that are needed in production or for test runs.
|
|
#
|
|
# These are installed automatically in devstack, and can also be installed manually using:
|
|
#
|
|
# pip install -r requirements/edx/development.txt
|
|
#
|
|
# When adding a new dependency which is imported from edx-platform code as a library,
|
|
# update scripts/dependencies/development.txt accordingly.
|
|
|
|
-c ../constraints.txt
|
|
|
|
-r pip-tools.txt # pip-tools and its dependencies, for managing requirements files
|
|
-r testing.txt # Dependencies for running the various test suites
|
|
|
|
click # Used for perf_tests utilities in modulestore
|
|
django-debug-toolbar==1.8 # A set of panels that display debug information about the current request/response
|
|
edx-sphinx-theme # Documentation theme
|
|
pyinotify # More efficient checking for runserver reload trigger events
|
|
sphinx==1.8.5 # Pinned because 2.0.0 release requires Python '>=3.5' but current Python is 2.7.12
|
|
vulture # Detects possible dead/unused code, used in scripts/find-dead-code.sh
|
|
modernize # Used to make Python 2 code more modern with the intention of eventually porting it over to Python 3.
|