LJX2017 commented on code in PR #4105: URL: https://github.com/apache/texera/pull/4105#discussion_r2594873294
########## amber/src/main/python/pyproject.toml: ########## @@ -15,17 +15,13 @@ # specific language governing permissions and limitations # under the License. -[tool.black] +[tool.ruff] line-length = 88 -target-version = ["py39", "py310", "py311", "py312"] -extend-exclude = ''' -/( - proto -)/ -''' +target-version = "py310" Review Comment: According to the official document from [Ruff](https://docs.astral.sh/ruff/settings/#target-version), target-version = "py310" means we support Python >=3.10, including python 3.12 and 3.13. Is this already the correct behavior or should we change it? -- 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]
