Skip to content

Commit

Permalink
poetry: update to 1.8.5
Browse files Browse the repository at this point in the history
  • Loading branch information
dgilman committed Dec 12, 2024
1 parent 480765c commit c3eeb74
Showing 1 changed file with 8 additions and 7 deletions.
15 changes: 8 additions & 7 deletions python/poetry/Portfile
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ PortSystem 1.0
PortGroup python 1.0

name poetry
version 1.8.4
version 1.8.5
revision 0
categories-append devel
platforms {darwin any}
Expand All @@ -23,20 +23,21 @@ long_description Poetry: Dependency Management for Python. \

homepage https://python-poetry.org/

checksums rmd160 6d613084f993d446ad044cdf727565c83883d087 \
sha256 5490f8da66d17eecd660e091281f8aaa5554381644540291817c249872c99202 \
size 1519163
checksums rmd160 f4a25e3e7e56aa6384675cf8d23bce06387996fb \
sha256 eb2c88d224f58f36df8f7b36d6c380c07d1001bca28bde620f68fc086e881b70 \
size 1519790

variant python39 conflicts python310 python311 python312 description {Use Python 3.9} {}
variant python310 conflicts python39 python311 python312 description {Use Python 3.10} {}
variant python311 conflicts python39 python310 python312 description {Use Python 3.11} {}
variant python312 conflicts python39 python310 python311 description {Use Python 3.12} {}
variant python313 conflicts python39 python310 python311 description {Use Python 3.12} {}

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

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

0 comments on commit c3eeb74

Please sign in to comment.