Skip to content

Commit

Permalink
Let it build packages for only Python 3.10
Browse files Browse the repository at this point in the history
* Without the upper bound, it tries to use Python 3.11 and aiohttp
  fails to build. (aio-libs/aiohttp#6600)
  • Loading branch information
achimnol committed May 27, 2022
1 parent 497ddd1 commit 43bb479
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pants.toml
Expand Up @@ -31,7 +31,7 @@ root_patterns = [
[python]
enable_resolves = true
resolves = { python-default = "python.lock" }
interpreter_constraints = ["CPython>=3.10"]
interpreter_constraints = ["CPython>=3.10,<3.11"]
lockfile_generator = "pex"

# [setup-py-generation]
Expand Down

0 comments on commit 43bb479

Please sign in to comment.