kbendick commented on code in PR #4650: URL: https://github.com/apache/iceberg/pull/4650#discussion_r860204565
########## 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: I do think it would be ok to do without the strict patch level. That said, since we do test against these specific patch versions, I also don't see a problem with setting it. We'll probably want to keep this up to date though. -- 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]
