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

setup.py files must be updated to find latest python3 executable binaries #29

Open
fstab50 opened this issue Dec 2, 2023 · 0 comments
Labels
bug Something isn't working enhancement New feature or request

Comments

@fstab50
Copy link
Owner

fstab50 commented Dec 2, 2023

The module_dir function in each setup.py file finds the correct directory for installing python binaries depending upon the python version on the local machine.

Currently, only python3.6 and 3.7 are supported; thus, build fails if python executable is > Python 3.7. Update the following code line in function moduel_dir:

bin_path = which('python3.6') or which('python3.7')

To:

bin_path = which('python3.6') or which('python3.8') or which('python3.9')

@fstab50 fstab50 added bug Something isn't working enhancement New feature or request labels Dec 2, 2023
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
bug Something isn't working enhancement New feature or request
Projects
None yet
Development

No branches or pull requests

1 participant