-
Notifications
You must be signed in to change notification settings - Fork 2.5k
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
No module named 'dataclasses' in Python 3.6.9 #1645
Comments
Not sure how that could happen as the requirement of Lines 70 to 80 in 2b75f88
|
I tried changing pyproject.toml from [[package]]
category = "main"
description = "A backport of the dataclasses module for Python 3.6"
marker = "python_version < \"3.7\""
name = "dataclasses"
optional = false
python-versions = ">=3.6, <3.7"
version = "0.7"
[package.source]
reference = "package proxy"
type = "legacy"
url = "http://…/root/pypi/+simple" But for whatever reason it looks like it's not being installed -
Running |
Yes, looks like a Poetry issue. |
I did not use Poetry but came across the same issue. It's tox on a Travis build. |
I think this maybe the issue: pypa/pip#8686 |
I am not sure this is it, this issue is about using I use pipenv and I can reproduce the bug. |
Python 3.6 doesn't have dataclasses, so the following fails:
The text was updated successfully, but these errors were encountered: