Skip to content

Commit

Permalink
fix(ci): Limit Python version from above.
Browse files Browse the repository at this point in the history
We don't test above 3.11
  • Loading branch information
reitzig committed Aug 24, 2023
1 parent 16eba2d commit 8b8dca7
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 3 deletions.
4 changes: 2 additions & 2 deletions poetry.lock

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

5 changes: 4 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,14 +16,17 @@ readme = "README.md"
repository = "https://github.com/reitzig/espanso-nice-dev-refs"
documentation = "https://github.com/reitzig/espanso-nice-dev-refs/blob/main/README.md"
classifiers=[
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Operating System :: OS Independent",
"Topic :: Utilities",
"Environment :: Plugins",
]

[tool.poetry.dependencies]
python = ">=3.8"
python = ">=3.8,<3.12"

[tool.poetry.group.dev.dependencies]
assertpy = "1.1"
Expand Down

0 comments on commit 8b8dca7

Please sign in to comment.