-
-
Notifications
You must be signed in to change notification settings - Fork 17.9k
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
BLD: update build requirement for py39 #37135 #37144
Conversation
fangchenli
commented
Oct 15, 2020
•
edited
Loading
edited
- closes BUG:Installation problem in python 3.9 #37135
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.
Many thanks for considering my request. But I'm really new with programming and cmd. How can I apply this code when I pip install in cmd?
"wheel",
"Cython>=0.29.21,<3", # Note: sync with setup.py
"numpy==1.16.5; python_version=='3.7' and platform_system!='AIX'",
"numpy==1.17.3; python_version>='3.8' and platform_system!='AIX'",
"numpy==1.17.3; python_version=='3.8' and platform_system!='AIX'",
"numpy==1.16.5; python_version=='3.7' and platform_system=='AIX'",
"numpy==1.17.3; python_version>='3.8' and platform_system=='AIX'",
"numpy==1.17.3; python_version=='3.8' and platform_system=='AIX'",
"numpy; python_version>='3.9'",
]
[tool.black]
target-version = ['py37', 'py38']
target-version = ['py37', 'py38', 'py39']
exclude = '''
(
I'll reply in the issue. |
Co-authored-by: Tom Augspurger <TomAugspurger@users.noreply.github.com>
thanks @fangchenli |