-
Notifications
You must be signed in to change notification settings - Fork 2.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
poetry add python-i18n[YAML] #2992
Labels
area/docs
Documentation issues/improvements
Comments
CarolHsu
added
area/docs
Documentation issues/improvements
status/triage
This issue needs to be triaged
labels
Sep 28, 2020
@CarolHsu can you try with the latest preview? $ docker run --rm -i --entrypoint bash python:3.8 <<EOF
> set -e
> python -m pip install -q poetry==1.1.0rc1
> python -m poetry new foobar
> pushd foobar
> sed -i /pytest/d pyproject.toml
> python -m poetry add python-i18n[yaml]
> python -m poetry run python -c "import i18n; print(i18n.loaders.yaml_loader)"
> EOF
Created package foobar in foobar
/foobar /
Creating virtualenv foobar-lWDpn5M1-py3.8 in /root/.cache/pypoetry/virtualenvs
Using version ^0.3.9 for python-i18n
Updating dependencies
Resolving dependencies...
Writing lock file
Package operations: 2 installs, 0 updates, 0 removals
• Installing pyyaml (5.3.1)
• Installing python-i18n (0.3.9)
<module 'i18n.loaders.yaml_loader' from '/root/.cache/pypoetry/virtualenvs/foobar-lWDpn5M1-py3.8/lib/python3.8/site-packages/i18n/loaders/yaml_loader.py'> Also note that uppercase |
2 tasks
yes, that works! |
This issue has been automatically locked since there has not been any recent activity after it was closed. Please open a new issue for related bugs. |
Sign up for free
to subscribe to this conversation on GitHub.
Already have an account?
Sign in.
probably relates to Adding extras for dependencies #79
Issue
So I encounter a weird issue with python-i18n, I noticed that it installs with
extras(require_extras)
pyyaml
, but it doesn't really loadi18n.loaders.yaml_loader
on my end.you can probably re-present this issue by
Please do advice, appreciate!
The text was updated successfully, but these errors were encountered: