Skip to content

Commit

Permalink
Set mininum Python version to 3.10 and bump version to 0.0.3
Browse files Browse the repository at this point in the history
Needed for "|" operator in type hints.
  • Loading branch information
jherbel committed Jul 25, 2024
1 parent cd212d3 commit 6693a1a
Show file tree
Hide file tree
Showing 2 changed files with 40 additions and 41 deletions.
77 changes: 38 additions & 39 deletions poetry.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "robotframework-robotmklibrary"
version = "0.0.2"
version = "0.0.3"
description = "A Robot Framework keyword library intended to be used with Robotmk."
authors = ["Jörg Herbel <[email protected]>"]
packages = [
Expand All @@ -9,7 +9,7 @@ packages = [
readme = "README.md"

[tool.poetry.dependencies]
python = "^3.8" # "^3" would be sufficient for our code, but fails to resolve
python = "^3.10" # need 3.10 for "|" operator in type hints

[tool.poetry.group.dev]
optional = true
Expand Down

0 comments on commit 6693a1a

Please sign in to comment.