Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 7 additions & 7 deletions python/poetry/Portfile
Original file line number Diff line number Diff line change
Expand Up @@ -27,23 +27,23 @@ checksums rmd160 87d6ec9ce78436800e2df141b8f1cdb08b6f1b75 \
sha256 bef9aa4bb00ce4c10b28b25e7bac724094802d6958190762c45df6c12749b37c \
size 3441978

variant python310 conflicts python311 python312 python313 description {Use Python 3.10} {}
variant python311 conflicts python310 python312 python313 description {Use Python 3.11} {}
variant python312 conflicts python310 python311 python313 description {Use Python 3.12} {}
variant python313 conflicts python310 python311 python312 description {Use Python 3.13} {}
variant python310 conflicts python311 python312 python313 python314 description {Use Python 3.10} {}
variant python311 conflicts python310 python312 python313 python314 description {Use Python 3.11} {}
variant python312 conflicts python310 python311 python313 python314 description {Use Python 3.12} {}
variant python313 conflicts python310 python311 python312 python314 description {Use Python 3.13} {}
variant python314 conflicts python310 python311 python312 python313 description {Use Python 3.14} {}

if {![variant_isset python310] && ![variant_isset python311] && ![variant_isset python312] } {
if {![variant_isset python310] && ![variant_isset python311] && ![variant_isset python312] && ![variant_isset python314] } {
default_variants +python313
}

foreach pv {313 312 311 310} {
foreach pv {314 313 312 311 310} {
if {[variant_isset python${pv}]} {
python.default_version ${pv}
break
}
}

python.pep517 yes
python.pep517_backend poetry

# These are in pyproject.toml order
Expand Down
2 changes: 1 addition & 1 deletion python/py-poetry-plugin-export/Portfile
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ checksums rmd160 0feaedd26d5b39a33c2ea614159e892a18173d88 \
sha256 6fc8755cfac93c74752f85510b171983e2e47d782d4ab5be4ffc4f6945be7967 \
size 30835

python.versions 310 311 312 313
python.versions 310 311 312 313 314

if {${name} ne ${subport}} {
python.pep517_backend poetry
Expand Down
2 changes: 1 addition & 1 deletion python/py-poetry-plugin-shell/Portfile
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ checksums rmd160 09e834a6af488512d72fa0189881ff021d3e7f5a \
sha256 2c2f878f2dbf488cdfd990fc7205af858280942f4ff766d7bbc5aa8b198a1762 \
size 9495

python.versions 310 311 312 313
python.versions 310 311 312 313 314

if {${name} ne ${subport}} {
python.pep517_backend poetry
Expand Down