mirror of
https://github.com/valitydev/redash.git
synced 2024-11-07 01:25:16 +00:00
07c9530984
* Decouple extensions from Flask app. This separates the extension registry from the Flask app and also introduces a separate registry for preriodic tasks. Fix #3466. * Address review feedback. * Update redash/extensions.py Co-Authored-By: jezdez <jannis@leidel.info> * Minor comment in requirements. * Refactoring after getting feedback. * Uncoupled bin/bundle-extensions from Flas app instance. * Load bundles in bundle script and don’t rely on Flask. * Upgraded to importlib-metadata 0.9. * Add missing requirement. * Fix TypeError. * Added requirements for bundle_extension script. * Install bundles requirement file correctly. * Decouple bundle loading code from Redash. * Install bundle requirements from requirements.txt. * Use circleci/node for build-docker-image step, too.
10 lines
382 B
Plaintext
10 lines
382 B
Plaintext
# These are the requirements that the extension bundle
|
|
# loading mechanism need on Python 2 and can be removed
|
|
# when moved to Python 3.
|
|
# It's automatically installed when running npm run bundle
|
|
|
|
# These can be removed when upgrading to Python 3.x
|
|
importlib-metadata==0.9 # remove when on 3.8
|
|
importlib_resources==1.0.2 # remove when on 3.7
|
|
pathlib2==2.3.3 # remove when on 3.x
|