[AIRFLOW-1430] Solve GPL dependency
One of the dependencies was pulling in a GPL library by default. With the new release of python-nvd3 this is now solved. Closes #3160 from bolkedebruin/legal
This commit is contained in:
Родитель
08b125a6a6
Коммит
68bbffd315
|
@ -16,6 +16,14 @@ You can also install Airflow with support for extra features like ``s3`` or ``po
|
||||||
|
|
||||||
pip install "apache-airflow[s3, postgres]"
|
pip install "apache-airflow[s3, postgres]"
|
||||||
|
|
||||||
|
.. note:: GPL dependency
|
||||||
|
|
||||||
|
One of the dependencies of Apache Airflow by default pulls in a GPL library ('unidecode').
|
||||||
|
In case this is a concern you can force a non GPL library by issuing
|
||||||
|
``export SLUGIFY_USES_TEXT_UNIDECODE=yes`` and then proceed with the normal installation.
|
||||||
|
Please note that this needs to be specified at every upgrade. Also note that if `unidecode`
|
||||||
|
is already present on the system the dependency will still be used.
|
||||||
|
|
||||||
Extra Packages
|
Extra Packages
|
||||||
''''''''''''''
|
''''''''''''''
|
||||||
|
|
||||||
|
|
2
setup.py
2
setup.py
|
@ -240,7 +240,7 @@ def do_setup():
|
||||||
'pygments>=2.0.1, <3.0',
|
'pygments>=2.0.1, <3.0',
|
||||||
'python-daemon>=2.1.1, <2.2',
|
'python-daemon>=2.1.1, <2.2',
|
||||||
'python-dateutil>=2.3, <3',
|
'python-dateutil>=2.3, <3',
|
||||||
'python-nvd3==0.14.2',
|
'python-nvd3==0.15.0',
|
||||||
'requests>=2.5.1, <3',
|
'requests>=2.5.1, <3',
|
||||||
'setproctitle>=1.1.8, <2',
|
'setproctitle>=1.1.8, <2',
|
||||||
'sqlalchemy>=1.1.15, <1.2.0',
|
'sqlalchemy>=1.1.15, <1.2.0',
|
||||||
|
|
Загрузка…
Ссылка в новой задаче