-
Notifications
You must be signed in to change notification settings - Fork 14.3k
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
[AIRFLOW-4062] Clear install extra package command #4897
[AIRFLOW-4062] Clear install extra package command #4897
Conversation
I create jira ticket becase of change log code in https://github.com/apache/airflow/pull/4897/files#diff-e90ff8ca3f03b5d363736e93748ef634R67 |
Why is it important? |
@mik-laj |
Hi @zhongjiajie , I tried to run Python: Python 2.7.15rc1 Please double-check from your side. |
@XD-DENG In my side, it raise error. |
@XD-DENG I get it, It is |
I would suggest closing it as I don't see it as an issue/bug. |
@XD-DENG Think about it for a while, I want to discuss PR once again. I have two points.
https://github.com/apache/airflow/blame/master/docs/howto/executor/use-celery.rst#L64 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Adding single quotes to pip install argument fixes install for zsh
and doesn't hurt other shells.
Sure, why not?
I've seen people make this mistake often. I'll would like to get this in. @zhongjiajie. Can you rebase? |
I agree with Fokko |
Some command for installing extra packages are `pip install apache-airflow[devel]` we should clear install extra package command to `pip install 'apache-airflow[devel]'` [ci skip]
4402415
to
119f387
Compare
@Fokko I rebase on master, PTAL, thanks. |
@zhongjiajie This causes test failures due to invalid docs. Turns out CI skip was a bad idea on docs, at least in this case :D We can have this back once the test pass :) |
@ashb I am so sorry about that. I will fix that. |
…#4897) Some command for installing extra packages are `pip install apache-airflow[devel]` we should clear install extra package command to `pip install 'apache-airflow[devel]'` [ci skip]
…apache#4897)" (apache#4965) This reverts commit d4655c5 as it causes doc test warnings/failures.
…#4897) Some command for installing extra packages are `pip install apache-airflow[devel]` we should clear install extra package command to `pip install 'apache-airflow[devel]'` [ci skip]
…apache#4897)" (apache#4965) This reverts commit d4655c5 as it causes doc test warnings/failures.
…#4897) Some command for installing extra packages are `pip install apache-airflow[devel]` we should clear install extra package command to `pip install 'apache-airflow[devel]'` [ci skip]
…apache#4897)" (apache#4965) This reverts commit d4655c5 as it causes doc test warnings/failures.
Some command for installing extra packages are
pip install apache-airflow[devel]
we shouldclear install extra package command to
pip install 'apache-airflow[devel]'
[ci skip]
Make sure you have checked all steps below.
Jira
Description
Some command for installing extra packages are
pip install apache-airflow[devel]
we shouldclear install extra package command to
pip install 'apache-airflow[devel]'