Skip to content

Commit

Permalink
fix: Resolve comments from @pquentin.
Browse files Browse the repository at this point in the history
  • Loading branch information
favilo committed Dec 13, 2024
1 parent 7406a90 commit 897fb58
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion docs/migrate.rst
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ Migrating to Rally 2.12.0
Minimum Python version is 3.9.0
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^

Rally 2.12.0 requires Python 3.9.0. Check the :ref:`updated installation instructions <install_python>` for more details.
Rally 2.12.0 requires Python 3.9.0 or above. Check the :ref:`updated installation instructions <install_python>` for more details.

Migrating to Rally 2.10.1
-------------------------
Expand Down
2 changes: 1 addition & 1 deletion esrally/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@


def check_python_version():
if sys.version_info.major != 3 or sys.version_info.minor < 9:
if sys.version_info < (3, 9):
raise RuntimeError("Rally requires at least Python 3.9 but you are using:\n\nPython %s" % str(sys.version))


Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -139,7 +139,7 @@ esrallyd = "esrally.rallyd:main"

[tool.black]
line-length = 140
target-version = ['py39', 'py310', 'py311']
target-version = ['py39', 'py310', 'py311', 'py312']

[tool.isort]
profile = 'black'
Expand Down

0 comments on commit 897fb58

Please sign in to comment.