Currently we define a minimal (X_PYTHON_MIN_VERSION: "3.10") and maximal (X_PYTHON_MAX_VERSION: "3.12") Python version in our CI but only require a lower bound on the version in each pyproject.toml file:
|
requires-python = ">=3.10" |
As higher versions of Python may introduce breaking changes, we should implement an upper bound if we already specify one in the CI.
Currently we define a minimal (
X_PYTHON_MIN_VERSION: "3.10") and maximal (X_PYTHON_MAX_VERSION: "3.12") Python version in our CI but only require a lower bound on the version in eachpyproject.tomlfile:basyx-python-sdk/sdk/pyproject.toml
Line 37 in 11125d5
As higher versions of Python may introduce breaking changes, we should implement an upper bound if we already specify one in the CI.