# -*- coding: utf-8; mode: tcl; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- vim:fenc=utf-8:ft=tcl:et:sw=4:ts=4:sts=4 PortSystem 1.0 PortGroup python 1.0 PortGroup github 1.0 github.setup pypa pipx 1.5.0 revision 0 checksums rmd160 b7d35d4023131996ca07b1b78e3532ed4bab30c5 \ sha256 fffc8c7419d35830bb68515dd285105c1cd7af14d69f813bc166e81b7e2d9df4 \ size 374890 categories python sysutils license MIT maintainers {@mndavidoff alluvialsw.com:md14-macports} openmaintainer supported_archs noarch platforms {darwin any} description Execute binaries from Python packages in isolated environments long_description ${description} github.tarball_from archive github.livecheck.regex {([\d.]+)} if { ![variant_isset python38] && ![variant_isset python39] && ![variant_isset python310] && ![variant_isset python311] && ![variant_isset python312] } { default_variants +python312 } variant python38 conflicts python39 python310 python311 python312 description {Use Python 3.8} {} variant python39 conflicts python38 python310 python311 python312 description {Use Python 3.9} {} variant python310 conflicts python38 python39 python311 python312 description {Use Python 3.10} {} variant python311 conflicts python38 python39 python310 python312 description {Use Python 3.11} {} variant python312 conflicts python38 python39 python310 python311 description {Use Python 3.12} {} if {[variant_isset python312]} { python.default_version 312 } elseif {[variant_isset python311]} { python.default_version 311 } elseif {[variant_isset python310]} { python.default_version 310 } elseif {[variant_isset python39]} { python.default_version 39 } elseif {[variant_isset python38]} { python.default_version 38 } python.pep517 yes python.pep517_backend hatch build.env-append SETUPTOOLS_SCM_PRETEND_VERSION=${version} depends_build-append \ port:py${python.version}-hatch-vcs \ port:py${python.version}-wheel depends_lib-append port:py${python.version}-argcomplete \ port:py${python.version}-packaging \ port:py${python.version}-pip \ port:py${python.version}-platformdirs \ port:py${python.version}-userpath if {${python.version} < 311} { depends_run-append \ port:py${python.version}-tomli }