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

fix: use python3 cmd explicitly in setup.py #61

Merged
merged 1 commit into from
Nov 4, 2022
Merged

Conversation

c0state
Copy link
Contributor

@c0state c0state commented Nov 3, 2022

Not sure if this is a good idea or needed but on macOS, python (vs python3) isn't found on later releases I believe. I know Ubuntu has a "python-is-python3" package to make this a bit more transparent.

@@ -58,9 +58,9 @@ def run(self):
},
cmdclass={
"clean": system("rm -rf build dist *.egg-info"),
"package": system("python setup.py sdist bdist_wheel"),
"package": system("python3 setup.py sdist bdist_wheel"),
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Some potentially relevant discussion at pyenv/pyenv#2379

@c0state c0state changed the title fix: use python3 cmd explicitly fix: use python3 cmd explicitly in setup.py Nov 3, 2022
@c0state c0state requested a review from sloria November 3, 2022 19:36
Copy link
Contributor

@sloria sloria left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

interesting. surprised this is necessary

@c0state c0state merged commit 9dc895c into master Nov 4, 2022
@c0state c0state deleted the fix/use_python3 branch November 4, 2022 00:45
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants