-
Notifications
You must be signed in to change notification settings - Fork 234
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
Add wordcloud #1552
base: master
Are you sure you want to change the base?
Add wordcloud #1552
Conversation
The output file seems to be missing. |
tools/wordcloud/macros.xml
Outdated
<requirement type="package" version="2.7.0">codecov</requirement> | ||
<requirement type="package" version="7.3.2">coverage</requirement> | ||
<requirement type="package" version="3.8.0">flake8</requirement> | ||
<requirement type="package" version="7.4.3">pytest</requirement> | ||
<requirement type="package" version="4.1.0">pytest-cov</requirement> | ||
<requirement type="package" version="0.9.7">pytest-sugar</requirement> | ||
<requirement type="package" version="28.0.0">setuptools</requirement> | ||
<requirement type="package" version="4.0.2">twine</requirement> | ||
<requirement type="package" version="0.38.1">wheel</requirement> | ||
<requirement type="package" version="1.5.1">numpydoc</requirement> | ||
<requirement type="package" version="2.31.1">imageio</requirement> | ||
<requirement type="package" version="7.2.3">sphinx</requirement> | ||
<requirement type="package" version="1.2.2">sphinx_rtd_theme</requirement> | ||
<requirement type="package" version="0.8.2">sphinx_gallery</requirement> | ||
<requirement type="package" version="0.4.0">sphinx-argparse</requirement> | ||
<requirement type="package" version="3.0.1">sphinx-issues</requirement> | ||
<requirement type="package" version="3.8.0">matplotlib</requirement> | ||
<requirement type="package" version="6.0.4">multidict</requirement> | ||
<requirement type="package" version="0.42.1">jieba</requirement> | ||
<requirement type="package" version="1.11.3">scipy</requirement> | ||
<requirement type="package" version="2.0.2">python-bidi</requirement> | ||
<requirement type="package" version="3.0.0">arabic_reshaper</requirement> |
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.
Why is this all needed? I would assume that only wordcloud as dependency works?
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.
Why is this all needed? I would assume that only wordcloud as dependency works?
Yes, it works with only Wordclous as a requirement.
tools/wordcloud/wordcloud.xml
Outdated
<param argument="--random_state" type="integer" label="Random seed"/> | ||
<param argument="--no_normalize_plurals" value="True" type="boolean" optional="True" label="Whether to remove trailing s from words"/> | ||
<param argument="--repeat" type="boolean" truevalue="True" falsevalue="False" value="False" label="Whether to repeat words and phrases until max_words or min_font_size is reached"/> | ||
<param argument="--version" type="boolean" truevalue="True" falsevalue="False" value="False" label="Show program's version number"/> |
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.
version should not be offered to the user, but you should add a <version_command>
tag to the tool.
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.
version should not be offered to the user, but you should add a
<version_command>
tag to the tool.
Thanks, I deleted this line.
I see this error here:
|
The wordcloud.xml, macros.xml, and.shed.yml files were added.