Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

podman-compose: Use Python 3.11 insted Python 3.10 #19261

Merged
merged 2 commits into from
Jun 28, 2023
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
4 changes: 2 additions & 2 deletions python/podman-compose/Portfile
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
# -*- 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

Check warning on line 1 in python/podman-compose/Portfile

View workflow job for this annotation

GitHub Actions / macos-11

port lint podman-compose-devel: Error: Portfile directory podman-compose does not match port name podman-compose-devel

Check warning on line 1 in python/podman-compose/Portfile

View workflow job for this annotation

GitHub Actions / macos-13

port lint podman-compose-devel: Error: Portfile directory podman-compose does not match port name podman-compose-devel

Check warning on line 1 in python/podman-compose/Portfile

View workflow job for this annotation

GitHub Actions / macos-12

port lint podman-compose-devel: Error: Portfile directory podman-compose does not match port name podman-compose-devel

PortSystem 1.0
PortGroup python 1.0

name podman-compose
version 1.0.6
revision 0
revision 1

categories-append devel
supported_archs noarch
Expand All @@ -22,7 +22,7 @@
sha256 2db235049fca50a5a4ffd511a917808c960dacb8defd5481dd8b36a77d4da2e5 \
size 34063

python.default_version 310
python.default_version 311

depends_build-append \
port:py${python.version}-setuptools
Expand Down
18 changes: 13 additions & 5 deletions python/py-python-dotenv/Portfile
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ PortSystem 1.0
PortGroup python 1.0
PortGroup github 1.0

github.setup theskumar python-dotenv 0.20.0 v
github.setup theskumar python-dotenv 1.0.0 v
github.tarball_from archive
revision 0

Expand All @@ -22,11 +22,11 @@ long_description $description \
environment variable. It is great for managing app settings \
during development and in production using 12-factor principles.

checksums rmd160 38a1b93a1769a10eb9fb6b62806609d4519ea0bf \
sha256 f25324ebe83467c58a089b30cda9775b3e4d4aa727e898dd2373142679807263 \
size 22356
checksums rmd160 bb5dad62bb6f59198fa04b004d211e053d16bb85 \
sha256 93fc54524656990bc9911ab224c991457cd8f39364c48cded2f1c4cb3846c0ac \
size 24730

python.versions 37 38 39 310
python.versions 37 38 39 310 311

if {${subport} ne ${name}} {
depends_build-append \
Expand All @@ -39,6 +39,14 @@ if {${subport} ne ${name}} {
depends_lib-append \
port:py${python.version}-importlib-metadata
}
if {${python.version} == 37 } {
github.setup theskumar python-dotenv 0.21.1 v
revision 0

checksums rmd160 bb5dad62bb6f59198fa04b004d211e053d16bb85 \
sha256 93fc54524656990bc9911ab224c991457cd8f39364c48cded2f1c4cb3846c0ac \
size 24730
}

# a few tests fail becuase the "dotenv" console_script hasn't been created yet...
depends_test-append \
Expand Down