Skip to content

Commit

Permalink
pythonbuild: fix logic error in defines-conditional for maximum-pytho…
Browse files Browse the repository at this point in the history
…n-version
  • Loading branch information
indygreg committed Oct 1, 2023
1 parent a01e91c commit a8c0808
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pythonbuild/cpython.py
Original file line number Diff line number Diff line change
Expand Up @@ -492,7 +492,7 @@ def derive_setup_local(
python_version, entry.get("minimum-python-version", "1.0")
)
python_max_match = meets_python_maximum_version(
python_version, entry.get("minimum-python-version", "100.0")
python_version, entry.get("maximum-python-version", "100.0")
)

if target_match and (python_min_match and python_max_match):
Expand Down

0 comments on commit a8c0808

Please sign in to comment.