Skip to content
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

[Bug & fix] gen_requirements issue with latest setup tools #13911

Closed
mikeseven opened this issue Feb 3, 2023 · 2 comments
Closed

[Bug & fix] gen_requirements issue with latest setup tools #13911

mikeseven opened this issue Feb 3, 2023 · 2 comments
Labels
needs-triage PRs or issues that need to be investigated by maintainers to find the right assignees to address it type: bug

Comments

@mikeseven
Copy link
Contributor

latest setup tools crash when doing make cython
The issue is in gen_requirements.py:
("numpy", "<=1.23.*"),

must be changed to:
("numpy", "<=1.23"),

@mikeseven mikeseven added needs-triage PRs or issues that need to be investigated by maintainers to find the right assignees to address it type: bug labels Feb 3, 2023
lhutton1 added a commit to lhutton1/tvm that referenced this issue Feb 3, 2023
Issue apache#13911 reported that newer versions of setuptools
crash with the version constraint "<=1.23.*", this commit
implements the suggested fix by using "<=1.23".

Change-Id: Iec49e4324337a5e85fa1a8d267da6c7cf70a195e
@lhutton1
Copy link
Contributor

lhutton1 commented Feb 3, 2023

Thanks for reporting @mikeseven, I pushed #13912 to fix this using your suggestion.

ashutosh-arm pushed a commit that referenced this issue Feb 3, 2023
Issue #13911 reported that newer versions of setuptools
crash with the version constraint "<=1.23.*", this commit
implements the suggested fix by using "<=1.23".
@mikeseven
Copy link
Contributor Author

all good, thanks for super speedy fix ;-)

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
needs-triage PRs or issues that need to be investigated by maintainers to find the right assignees to address it type: bug
Projects
None yet
Development

No branches or pull requests

2 participants