-
Notifications
You must be signed in to change notification settings - Fork 81
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
## Why pin the Python version? Because we _can_ put everybody on the same version. This way, we make it less likely different people will hit different issues. ## Why use Python 3.11? It is well established, binary wheels exist for it in PyPI, it is available on UBI 8 and 9, and on Fedora starting with Fedora 37. ## Why say `python = ">=3.11.5, <3.12.0"`? The syntax uses basic math instead of tildes and carets, which not everybody might've learned what they mean. That makes the requirement easier to read and understand. Signed-off-by: Jiri Daněk <[email protected]>
- Loading branch information
Showing
8 changed files
with
47 additions
and
92 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,8 +6,9 @@ authors = ["RHODS QE <[email protected]>"] | |
readme = "README.md" | ||
packages = [{include = "ods_ci"}] | ||
|
||
# https://python-poetry.org/docs/dependency-specification | ||
[tool.poetry.dependencies] | ||
python = "^3.8.1" | ||
python = ">=3.11.5, <3.12.0" | ||
reportportal-client = "^5.2.5" | ||
robotframework = "^6" | ||
robotframework-debuglibrary = ">=2.0.0" | ||
|
@@ -47,7 +48,7 @@ profile = "black" | |
line_length = 88 # align with black's default | ||
|
||
[tool.ruff] | ||
target-version = "py38" | ||
target-version = "py311" | ||
line-length = 88 # align with black's default | ||
|
||
# https://docs.astral.sh/ruff/rules | ||
|