We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
If I'm not misunderstanding #167, the contrib sub-package should be shipped as part of mistletoe, however it is missing from the PyPI's mistletoe==1.0.0 package, in either mistletoe-1.0.0.tar.gz or mistletoe-1.0.0-py3-none-any.whl.
contrib
mistletoe
mistletoe==1.0.0
virtualenv -q venv && ./venv/bin/pip3 install mistletoe==1.0.0 ./venv/bin/python -c "from mistletoe.contrib.jira_renderer import JIRARenderer" rm -rf venv
No errors occur
Traceback (most recent call last): File "<string>", line 1, in <module> ModuleNotFoundError: No module named 'mistletoe.contrib'
The text was updated successfully, but these errors were encountered:
@franferrax, thanks for reporting this issue. It looks like we need to list all exported packages explicitly here: https://github.com/miyuchina/mistletoe/blob/v1.0.0/setup.py#L11, i.e.:
- packages=['mistletoe'], + packages=['mistletoe', 'mistletoe.contrib'],
I will check it out on this weekend probably.
Sorry, something went wrong.
build: include package "mistletoe.contrib" in the built artifacts (#177)
4b41f9b
Fixed in 1.0.1 - and the version has just been released. :)
Thanks a lot @pbodnar!
pbodnar
No branches or pull requests
If I'm not misunderstanding #167, the
contrib
sub-package should be shipped as part ofmistletoe
, however it is missing from the PyPI'smistletoe==1.0.0
package, in either mistletoe-1.0.0.tar.gz or mistletoe-1.0.0-py3-none-any.whl.Steps to reproduce
Expected behavior
No errors occur
Actual behavior
The text was updated successfully, but these errors were encountered: