cabhishek commented on code in PR #4650: URL: https://github.com/apache/iceberg/pull/4650#discussion_r859983691
########## python/README.md: ########## @@ -35,9 +35,22 @@ pip install -e . Testing is done using tox. The config can be found in `tox.ini` within the python directory of the iceberg project. ``` -# simply run tox within the python dir tox ``` +## Solution for `InterpreterNotFound` Errors + +Currently, tests run against python `3.7.12`, `3.8.12`, and `3.9.10`. It's recommended to install and manage multiple interpreters using [pyenv](https://github.com/pyenv/pyenv). +``` +pyenv install 3.7.12 +pyenv install 3.8.12 +pyenv install 3.9.10 Review Comment: Thanks for the PR. Wondering if versioning needs to be strict up to patch level? or just 3.8.* should suffice? -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected] --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
