Skip to content

Commit

Permalink
Fix pyproject Python requirement
Browse files Browse the repository at this point in the history
Pinning a specific version is not allowed :(
  • Loading branch information
milanmlft committed Jan 29, 2024
1 parent 9be153f commit c9421a7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cli/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ authors = [
]
description = "PIXL command line interface"
readme = "README.md"
requires-python = "3.10"
requires-python = "<=3.10"

This comment has been minimized.

Copy link
@stefpiatek

stefpiatek Jan 29, 2024

Contributor

why less than and not greater than?

classifiers = [
"Programming Language :: Python :: 3"
]
Expand Down

0 comments on commit c9421a7

Please sign in to comment.