From 0effaaca7a3471a74832729b7680647d98525471 Mon Sep 17 00:00:00 2001 From: ARI WG Git Bot Date: Wed, 22 Apr 2026 17:14:24 +0000 Subject: [PATCH 01/36] Add poetry-core 2.3.2 for stack(s) cflinuxfs4, cflinuxfs5 --- manifest.yml | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/manifest.yml b/manifest.yml index 0347326c..98f8c8d4 100644 --- a/manifest.yml +++ b/manifest.yml @@ -113,6 +113,15 @@ dependencies: - cflinuxfs5 source: https://files.pythonhosted.org/packages/00/bf/9e5a536eae91adcbed6ee9c44861250bdfdc42bf2663680ce44cf5253fdb/pipenv-2026.5.2.tar.gz source_sha256: cf5985038a4cc4a1ffe9b48a2e580d2595245823dcc5684d07b1a53929ab47cc +- name: poetry-core + version: 2.3.2 + uri: https://buildpacks.cloudfoundry.org/dependencies/poetry-core/poetry-core_2.3.2_linux_noarch_cflinuxfs4_d72fba6b.tgz + sha256: d72fba6be08a3ba47acce01261b14cd5a54100fea3c9e3ede867ca7d5c207397 + cf_stacks: + - cflinuxfs4 + - cflinuxfs5 + source: https://files.pythonhosted.org/packages/10/48/5b4f344c252ee2f75051b6bf7dfb68ab53aa00a107f5f8e5cbf795701dad/poetry_core-2.3.2.tar.gz + source_sha256: 20cb71be27b774628da9f384effd9183dfceb53bcef84063248a8672aa47031f - name: python version: 3.10.19 uri: https://buildpacks.cloudfoundry.org/dependencies/python/python_3.10.19_linux_x64_cflinuxfs3_d754b71d.tgz From d39ec59e58f483cb333acfe54f19419b29055af4 Mon Sep 17 00:00:00 2001 From: Pascal Zimmermann Date: Tue, 10 Mar 2026 21:03:19 +0100 Subject: [PATCH 02/36] feat: Add flit-core support Signed-off-by: Pascal Zimmermann --- CONTRIBUTING.md | 2 +- README.md | 16 +++++++++++++++- src/python/supply/supply.go | 14 +++++++++++--- src/python/supply/supply_test.go | 26 ++++++++++++++++++-------- 4 files changed, 45 insertions(+), 13 deletions(-) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index c6cf6d37..c7116b9a 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -4,7 +4,7 @@ All pull request authors must have a Contributor License Agreement (CLA) on-file with us. Please sign the Contributor License Agreements for Cloud Foundry ([Individual or Corporate](https://www.cloudfoundry.org/community/cla/)) via the EasyCLA application when you submit your first Pull Request. -When sending signed CLA please provide your github username in case of individual CLA or the list of github usernames that can make pull requests on behalf of your organization. +When sending signed CLA please provide your Github username in case of individual CLA or the list of Github usernames that can make pull requests on behalf of your organization. If you are confident that you're covered under a Corporate CLA, please make sure you've publicized your membership in the appropriate Github Org, per these instructions. diff --git a/README.md b/README.md index 897a55ab..eda068e0 100644 --- a/README.md +++ b/README.md @@ -10,6 +10,20 @@ This buildpack supports running Django and Flask apps. Official buildpack documentation can be found at [python buildpack docs](http://docs.cloudfoundry.org/buildpacks/python/index.html). +## Adding new dependencies + +If you want to add a new dependency to the buildpack, please add it to the [config.yml](https://github.com/cloudfoundry/buildpacks-ci/blob/5a63d13df09f83d5dff7c71d0a12c3e2dc798d39/pipelines/dependency-builds/config.yml#L272) file. For example, if you want to add a new version of Python, add an entry like the following: + +```yaml +python: + lines: + - line: 3.14.X + deprecation_date: 2030-10-07 + link: https://peps.python.org/pep-0745/ +``` + +The new dependency will be automatically added to the buildpack [manifest.yml](manifest.yml) file. + ### Building the Buildpack To build this buildpack, run the following commands from the buildpack's directory: @@ -24,7 +38,7 @@ To build this buildpack, run the following commands from the buildpack's directo 1. Install buildpack-packager ```bash - go install github.com/cloudfoundry/libbuildpack/packager/buildpack-packager + go install github.com/cloudfoundry/libbuildpack/packager/buildpack-packager@latest ``` 1. Build the buildpack diff --git a/src/python/supply/supply.go b/src/python/supply/supply.go index b36a48fd..f9bef58f 100644 --- a/src/python/supply/supply.go +++ b/src/python/supply/supply.go @@ -743,15 +743,23 @@ func (s *Supplier) RunPipVendored() error { // dependencies - wheel and setuptools. These are packaged by the dependency // pipeline within the "pip" dependency. func (s *Supplier) InstallCommonBuildDependencies() error { - var commonDeps = []string{"wheel", "setuptools"} tempPath := filepath.Join("/tmp", "common_build_deps") if err := s.Installer.InstallOnlyVersion("pip", tempPath); err != nil { return err } + if err := s.Installer.InstallOnlyVersion("flit-core", tempPath); err != nil { + return err + } + + s.Log.Info("Installing build-time dependency flit-core (bootstrap)") + args := []string{tempPath, "--no-build-isolation"} + if err := s.runPipInstall(args...); err != nil { + return fmt.Errorf("could not bootstrap-install flit-core: %v", err) + } - for _, dep := range commonDeps { + for _, dep := range []string{"wheel", "setuptools"} { s.Log.Info("Installing build-time dependency %s", dep) - args := []string{dep, "--no-index", "--upgrade-strategy=only-if-needed", fmt.Sprintf("--find-links=%s", tempPath)} + args := []string{dep, "--no-index", "--no-build-isolation", "--upgrade-strategy=only-if-needed", fmt.Sprintf("--find-links=%s", tempPath)} if err := s.runPipInstall(args...); err != nil { return fmt.Errorf("could not install build-time dependency %s: %v", dep, err) } diff --git a/src/python/supply/supply_test.go b/src/python/supply/supply_test.go index b7947dc3..366268d5 100644 --- a/src/python/supply/supply_test.go +++ b/src/python/supply/supply_test.go @@ -633,22 +633,32 @@ MarkupSafe==2.0.1 Describe("InstallCommonBuildDependencies", func() { Context("successful installation", func() { - It("runs command to install wheel and setuptools", func() { + It("bootstraps flit-core, wheel and setuptools", func() { mockInstaller.EXPECT().InstallOnlyVersion("pip", "/tmp/common_build_deps") - mockCommand.EXPECT().Execute(buildDir, gomock.Any(), gomock.Any(), "python", "-m", "pip", "install", "wheel", "--no-index", "--upgrade-strategy=only-if-needed", "--find-links=/tmp/common_build_deps") - mockCommand.EXPECT().Execute(buildDir, gomock.Any(), gomock.Any(), "python", "-m", "pip", "install", "setuptools", "--no-index", "--upgrade-strategy=only-if-needed", "--find-links=/tmp/common_build_deps") + mockInstaller.EXPECT().InstallOnlyVersion("flit-core", "/tmp/common_build_deps") + mockCommand.EXPECT().Execute(buildDir, gomock.Any(), gomock.Any(), "python", "-m", "pip", "install", "/tmp/common_build_deps", "--no-build-isolation") + mockCommand.EXPECT().Execute(buildDir, gomock.Any(), gomock.Any(), "python", "-m", "pip", "install", "wheel", "--no-index", "--no-build-isolation", "--upgrade-strategy=only-if-needed", "--find-links=/tmp/common_build_deps") + mockCommand.EXPECT().Execute(buildDir, gomock.Any(), gomock.Any(), "python", "-m", "pip", "install", "setuptools", "--no-index", "--no-build-isolation", "--upgrade-strategy=only-if-needed", "--find-links=/tmp/common_build_deps") Expect(supplier.InstallCommonBuildDependencies()).To(Succeed()) }) }) - Context("installation fails", func() { - BeforeEach(func() { - mockCommand.EXPECT().Execute(buildDir, gomock.Any(), gomock.Any(), "python", "-m", "pip", "install", "wheel", "--no-index", "--upgrade-strategy=only-if-needed", "--find-links=/tmp/common_build_deps").Return(fmt.Errorf("some-pip-error")) - }) + Context("flit-core bootstrap fails", func() { + It("returns a useful error message", func() { + mockInstaller.EXPECT().InstallOnlyVersion("pip", "/tmp/common_build_deps") + mockInstaller.EXPECT().InstallOnlyVersion("flit-core", "/tmp/common_build_deps") + mockCommand.EXPECT().Execute(buildDir, gomock.Any(), gomock.Any(), "python", "-m", "pip", "install", "/tmp/common_build_deps", "--no-build-isolation").Return(fmt.Errorf("bootstrap-error")) + Expect(supplier.InstallCommonBuildDependencies()).To(MatchError("could not bootstrap-install flit-core: bootstrap-error")) + }) + }) + Context("wheel installation fails", func() { It("returns a useful error message", func() { - mockInstaller.EXPECT().InstallOnlyVersion(gomock.Any(), gomock.Any()).Times(1) + mockInstaller.EXPECT().InstallOnlyVersion("pip", "/tmp/common_build_deps") + mockInstaller.EXPECT().InstallOnlyVersion("flit-core", "/tmp/common_build_deps") + mockCommand.EXPECT().Execute(buildDir, gomock.Any(), gomock.Any(), "python", "-m", "pip", "install", "/tmp/common_build_deps", "--no-build-isolation") + mockCommand.EXPECT().Execute(buildDir, gomock.Any(), gomock.Any(), "python", "-m", "pip", "install", "wheel", "--no-index", "--no-build-isolation", "--upgrade-strategy=only-if-needed", "--find-links=/tmp/common_build_deps").Return(fmt.Errorf("some-pip-error")) Expect(supplier.InstallCommonBuildDependencies()).To(MatchError("could not install build-time dependency wheel: some-pip-error")) }) }) From 5a65516d9d1ce3549027b806e336f258cac78ee5 Mon Sep 17 00:00:00 2001 From: Pascal Zimmermann Date: Wed, 22 Apr 2026 08:48:41 +0200 Subject: [PATCH 03/36] feat: Bundle the flit-core and poetry-core installation --- src/python/supply/supply.go | 18 +++++++------- src/python/supply/supply_test.go | 41 +++++++++++++++++++++++++------- 2 files changed, 43 insertions(+), 16 deletions(-) diff --git a/src/python/supply/supply.go b/src/python/supply/supply.go index f9bef58f..44cb9499 100644 --- a/src/python/supply/supply.go +++ b/src/python/supply/supply.go @@ -747,14 +747,14 @@ func (s *Supplier) InstallCommonBuildDependencies() error { if err := s.Installer.InstallOnlyVersion("pip", tempPath); err != nil { return err } - if err := s.Installer.InstallOnlyVersion("flit-core", tempPath); err != nil { - return err - } - - s.Log.Info("Installing build-time dependency flit-core (bootstrap)") - args := []string{tempPath, "--no-build-isolation"} - if err := s.runPipInstall(args...); err != nil { - return fmt.Errorf("could not bootstrap-install flit-core: %v", err) + for _, dep := range []string{"flit-core", "poetry-core"} { + if err := s.Installer.InstallOnlyVersion(dep, tempPath); err != nil { + return fmt.Errorf("could not prepare build-time dependency %s: %v", dep, err) + } + s.Log.Info("Installing build-time dependency %s (bootstrap)", dep) + if err := s.runPipInstall(tempPath, "--no-build-isolation"); err != nil { + return fmt.Errorf("could not bootstrap-install %s: %v", dep, err) + } } for _, dep := range []string{"wheel", "setuptools"} { @@ -764,6 +764,8 @@ func (s *Supplier) InstallCommonBuildDependencies() error { return fmt.Errorf("could not install build-time dependency %s: %v", dep, err) } } + + return nil } diff --git a/src/python/supply/supply_test.go b/src/python/supply/supply_test.go index 366268d5..a8d15d41 100644 --- a/src/python/supply/supply_test.go +++ b/src/python/supply/supply_test.go @@ -633,10 +633,12 @@ MarkupSafe==2.0.1 Describe("InstallCommonBuildDependencies", func() { Context("successful installation", func() { - It("bootstraps flit-core, wheel and setuptools", func() { + It("bootstraps flit-core, poetry-core, wheel and setuptools", func() { mockInstaller.EXPECT().InstallOnlyVersion("pip", "/tmp/common_build_deps") mockInstaller.EXPECT().InstallOnlyVersion("flit-core", "/tmp/common_build_deps") mockCommand.EXPECT().Execute(buildDir, gomock.Any(), gomock.Any(), "python", "-m", "pip", "install", "/tmp/common_build_deps", "--no-build-isolation") + mockInstaller.EXPECT().InstallOnlyVersion("poetry-core", "/tmp/common_build_deps") + mockCommand.EXPECT().Execute(buildDir, gomock.Any(), gomock.Any(), "python", "-m", "pip", "install", "/tmp/common_build_deps", "--no-build-isolation") mockCommand.EXPECT().Execute(buildDir, gomock.Any(), gomock.Any(), "python", "-m", "pip", "install", "wheel", "--no-index", "--no-build-isolation", "--upgrade-strategy=only-if-needed", "--find-links=/tmp/common_build_deps") mockCommand.EXPECT().Execute(buildDir, gomock.Any(), gomock.Any(), "python", "-m", "pip", "install", "setuptools", "--no-index", "--no-build-isolation", "--upgrade-strategy=only-if-needed", "--find-links=/tmp/common_build_deps") @@ -644,20 +646,43 @@ MarkupSafe==2.0.1 }) }) - Context("flit-core bootstrap fails", func() { - It("returns a useful error message", func() { - mockInstaller.EXPECT().InstallOnlyVersion("pip", "/tmp/common_build_deps") - mockInstaller.EXPECT().InstallOnlyVersion("flit-core", "/tmp/common_build_deps") - mockCommand.EXPECT().Execute(buildDir, gomock.Any(), gomock.Any(), "python", "-m", "pip", "install", "/tmp/common_build_deps", "--no-build-isolation").Return(fmt.Errorf("bootstrap-error")) - Expect(supplier.InstallCommonBuildDependencies()).To(MatchError("could not bootstrap-install flit-core: bootstrap-error")) + Context("flit-core bootstrap fails", func() { + It("returns a useful error message", func() { + mockInstaller.EXPECT().InstallOnlyVersion("pip", "/tmp/common_build_deps") + mockInstaller.EXPECT().InstallOnlyVersion("flit-core", "/tmp/common_build_deps") + mockCommand.EXPECT().Execute(buildDir, gomock.Any(), gomock.Any(), "python", "-m", "pip", "install", "/tmp/common_build_deps", "--no-build-isolation").Return(fmt.Errorf("bootstrap-error")) + Expect(supplier.InstallCommonBuildDependencies()).To(MatchError("could not bootstrap-install flit-core: bootstrap-error")) + }) + }) + + Context("poetry-core preparation fails", func() { + It("returns a useful error message", func() { + mockInstaller.EXPECT().InstallOnlyVersion("pip", "/tmp/common_build_deps") + mockInstaller.EXPECT().InstallOnlyVersion("flit-core", "/tmp/common_build_deps") + mockCommand.EXPECT().Execute(buildDir, gomock.Any(), gomock.Any(), "python", "-m", "pip", "install", "/tmp/common_build_deps", "--no-build-isolation") + mockInstaller.EXPECT().InstallOnlyVersion("poetry-core", "/tmp/common_build_deps").Return(fmt.Errorf("prepare-error")) + Expect(supplier.InstallCommonBuildDependencies()).To(MatchError("could not prepare build-time dependency poetry-core: prepare-error")) + }) + }) + + Context("poetry-core bootstrap fails", func() { + It("returns a useful error message", func() { + mockInstaller.EXPECT().InstallOnlyVersion("pip", "/tmp/common_build_deps") + mockInstaller.EXPECT().InstallOnlyVersion("flit-core", "/tmp/common_build_deps") + mockCommand.EXPECT().Execute(buildDir, gomock.Any(), gomock.Any(), "python", "-m", "pip", "install", "/tmp/common_build_deps", "--no-build-isolation") + mockInstaller.EXPECT().InstallOnlyVersion("poetry-core", "/tmp/common_build_deps") + mockCommand.EXPECT().Execute(buildDir, gomock.Any(), gomock.Any(), "python", "-m", "pip", "install", "/tmp/common_build_deps", "--no-build-isolation").Return(fmt.Errorf("poetry-error")) + Expect(supplier.InstallCommonBuildDependencies()).To(MatchError("could not bootstrap-install poetry-core: poetry-error")) + }) }) - }) Context("wheel installation fails", func() { It("returns a useful error message", func() { mockInstaller.EXPECT().InstallOnlyVersion("pip", "/tmp/common_build_deps") mockInstaller.EXPECT().InstallOnlyVersion("flit-core", "/tmp/common_build_deps") mockCommand.EXPECT().Execute(buildDir, gomock.Any(), gomock.Any(), "python", "-m", "pip", "install", "/tmp/common_build_deps", "--no-build-isolation") + mockInstaller.EXPECT().InstallOnlyVersion("poetry-core", "/tmp/common_build_deps") + mockCommand.EXPECT().Execute(buildDir, gomock.Any(), gomock.Any(), "python", "-m", "pip", "install", "/tmp/common_build_deps", "--no-build-isolation") mockCommand.EXPECT().Execute(buildDir, gomock.Any(), gomock.Any(), "python", "-m", "pip", "install", "wheel", "--no-index", "--no-build-isolation", "--upgrade-strategy=only-if-needed", "--find-links=/tmp/common_build_deps").Return(fmt.Errorf("some-pip-error")) Expect(supplier.InstallCommonBuildDependencies()).To(MatchError("could not install build-time dependency wheel: some-pip-error")) }) From 749259d0da7fc28269452edf6497c9614863bbe2 Mon Sep 17 00:00:00 2001 From: ARI WG Git Bot Date: Sun, 3 May 2026 14:41:19 +0000 Subject: [PATCH 04/36] Add poetry-core 2.4.0, remove poetry-core 2.3.2 for stack(s) cflinuxfs4, cflinuxfs5 --- manifest.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/manifest.yml b/manifest.yml index 98f8c8d4..038923f4 100644 --- a/manifest.yml +++ b/manifest.yml @@ -114,14 +114,14 @@ dependencies: source: https://files.pythonhosted.org/packages/00/bf/9e5a536eae91adcbed6ee9c44861250bdfdc42bf2663680ce44cf5253fdb/pipenv-2026.5.2.tar.gz source_sha256: cf5985038a4cc4a1ffe9b48a2e580d2595245823dcc5684d07b1a53929ab47cc - name: poetry-core - version: 2.3.2 - uri: https://buildpacks.cloudfoundry.org/dependencies/poetry-core/poetry-core_2.3.2_linux_noarch_cflinuxfs4_d72fba6b.tgz - sha256: d72fba6be08a3ba47acce01261b14cd5a54100fea3c9e3ede867ca7d5c207397 + version: 2.4.0 + uri: https://buildpacks.cloudfoundry.org/dependencies/poetry-core/poetry-core_2.4.0_linux_noarch_cflinuxfs4_cd4ae6ac.tgz + sha256: cd4ae6ac3e7afb4a0541522d04c630e55c73866812036714045521b1eda7f387 cf_stacks: - cflinuxfs4 - cflinuxfs5 - source: https://files.pythonhosted.org/packages/10/48/5b4f344c252ee2f75051b6bf7dfb68ab53aa00a107f5f8e5cbf795701dad/poetry_core-2.3.2.tar.gz - source_sha256: 20cb71be27b774628da9f384effd9183dfceb53bcef84063248a8672aa47031f + source: https://files.pythonhosted.org/packages/b0/97/f7bb55470bb7890d9b3d3f9fa761083d5c9a6838b17c94a41bf2939f89ef/poetry_core-2.4.0.tar.gz + source_sha256: 4e8c7496cf797998ffc493f2e23eba4b038c894c08eadacdcdf688945de6b43a - name: python version: 3.10.19 uri: https://buildpacks.cloudfoundry.org/dependencies/python/python_3.10.19_linux_x64_cflinuxfs3_d754b71d.tgz From 2998b463c30b5467fed4d52075cf900ce4a48065 Mon Sep 17 00:00:00 2001 From: git Date: Mon, 4 May 2026 07:31:10 +0000 Subject: [PATCH 05/36] [ci skip] bump to 1.9.1 --- VERSION | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/VERSION b/VERSION index f8e233b2..9ab8337f 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -1.9.0 +1.9.1 From c6154bd96cd97f6405992e9b9342d83b56410fe0 Mon Sep 17 00:00:00 2001 From: git Date: Wed, 27 May 2026 12:04:35 +0000 Subject: [PATCH 06/36] [ci skip] bump to 1.9.2 --- VERSION | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/VERSION b/VERSION index 9ab8337f..8fdcf386 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -1.9.1 +1.9.2 From 180b742494d82e71baccab8624c6a5dd2e604c90 Mon Sep 17 00:00:00 2001 From: ARI WG Git Bot Date: Wed, 3 Jun 2026 09:35:21 +0000 Subject: [PATCH 07/36] Add poetry-core 2.4.1, remove poetry-core 2.4.0 for stack(s) cflinuxfs4, cflinuxfs5 --- manifest.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/manifest.yml b/manifest.yml index 038923f4..276d8c1f 100644 --- a/manifest.yml +++ b/manifest.yml @@ -114,14 +114,14 @@ dependencies: source: https://files.pythonhosted.org/packages/00/bf/9e5a536eae91adcbed6ee9c44861250bdfdc42bf2663680ce44cf5253fdb/pipenv-2026.5.2.tar.gz source_sha256: cf5985038a4cc4a1ffe9b48a2e580d2595245823dcc5684d07b1a53929ab47cc - name: poetry-core - version: 2.4.0 - uri: https://buildpacks.cloudfoundry.org/dependencies/poetry-core/poetry-core_2.4.0_linux_noarch_cflinuxfs4_cd4ae6ac.tgz - sha256: cd4ae6ac3e7afb4a0541522d04c630e55c73866812036714045521b1eda7f387 + version: 2.4.1 + uri: https://buildpacks.cloudfoundry.org/dependencies/poetry-core/poetry-core_2.4.1_linux_noarch_cflinuxfs4_e8608303.tgz + sha256: e8608303f2f76854a35a5ffe33bf8f89887b639a4bc2aef0d2e024732552ba02 cf_stacks: - cflinuxfs4 - cflinuxfs5 - source: https://files.pythonhosted.org/packages/b0/97/f7bb55470bb7890d9b3d3f9fa761083d5c9a6838b17c94a41bf2939f89ef/poetry_core-2.4.0.tar.gz - source_sha256: 4e8c7496cf797998ffc493f2e23eba4b038c894c08eadacdcdf688945de6b43a + source: https://files.pythonhosted.org/packages/b2/f2/fa88c58efb9a737c7e0e40e470edd0973fe33f0f277d24dcf17454b50974/poetry_core-2.4.1.tar.gz + source_sha256: 89dceb6c10e9c6d8650a16183400e3c9ff9ddee13b0a81023b5575334a2b3744 - name: python version: 3.10.19 uri: https://buildpacks.cloudfoundry.org/dependencies/python/python_3.10.19_linux_x64_cflinuxfs3_d754b71d.tgz From 81d084a52e458a1cb2a643ab38f9a13d9d568400 Mon Sep 17 00:00:00 2001 From: ARI WG Git Bot Date: Wed, 3 Jun 2026 09:37:00 +0000 Subject: [PATCH 08/36] Rebuild flit-core 3.12.0 for stack(s) cflinuxfs4, cflinuxfs5 --- manifest.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/manifest.yml b/manifest.yml index 038923f4..2f3d3a8d 100644 --- a/manifest.yml +++ b/manifest.yml @@ -27,8 +27,8 @@ dependency_deprecation_dates: dependencies: - name: flit-core version: 3.12.0 - uri: https://buildpacks.cloudfoundry.org/dependencies/flit-core/flit-core_3.12.0_linux_noarch_any-stack_ce08b8fa.tgz - sha256: ce08b8faf08c0be08c4c8c5617442bf36641e8c1cc26e9c3ad295d70252edffb + uri: https://buildpacks.cloudfoundry.org/dependencies/flit-core/flit-core_3.12.0_linux_noarch_cflinuxfs4_2e12c5e8.tgz + sha256: 2e12c5e8572cdb9c2c4010eb133f9a49e219d12e18a3c81f7c8cc62ddb5d343e cf_stacks: - cflinuxfs4 - cflinuxfs5 From cfb87f42f008fada0d7a70c675c9534d02a2666c Mon Sep 17 00:00:00 2001 From: ARI WG Git Bot Date: Wed, 3 Jun 2026 09:37:26 +0000 Subject: [PATCH 09/36] Rebuild python 3.11.15 for stack(s) cflinuxfs4, cflinuxfs5 --- manifest.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/manifest.yml b/manifest.yml index 038923f4..6710ed3d 100644 --- a/manifest.yml +++ b/manifest.yml @@ -156,16 +156,16 @@ dependencies: source_sha256: 563d2a1b2a5ba5d5409b5ecd05a0e1bf9b028cf3e6a6f0c87a5dc8dc3f2d9182 - name: python version: 3.11.15 - uri: https://buildpacks.cloudfoundry.org/dependencies/python/python_3.11.15_linux_x64_cflinuxfs4_830cc0e2.tgz - sha256: 830cc0e2fb2b3232e683f415b5011314703ac58b4acd4e000976963788c94865 + uri: https://buildpacks.cloudfoundry.org/dependencies/python/python_3.11.15_linux_x64_cflinuxfs4_d89c37b3.tgz + sha256: d89c37b356478929b97231fb2d4090d0ecc06d4293459dabd7b8881250350647 cf_stacks: - cflinuxfs4 source: https://www.python.org/ftp/python/3.11.15/Python-3.11.15.tgz source_sha256: f4de1b10bd6c70cbb9fa1cd71fc5038b832747a74ee59d599c69ce4846defb50 - name: python version: 3.11.15 - uri: https://buildpacks.cloudfoundry.org/dependencies/python/python_3.11.15_linux_x64_cflinuxfs5_ded45956.tgz - sha256: ded45956efaaa20ecdd5914182b96ea47b3e9e82bc68fe1ea08820fa319689c4 + uri: https://buildpacks.cloudfoundry.org/dependencies/python/python_3.11.15_linux_x64_cflinuxfs5_240344f9.tgz + sha256: 240344f919c73c5ca96ac44c8a91faba0b8950fa36d4d81c50956988024ae06b cf_stacks: - cflinuxfs5 source: https://www.python.org/ftp/python/3.11.15/Python-3.11.15.tgz From 47b644f27cd65d4caba1365b5ec347228c2d8d03 Mon Sep 17 00:00:00 2001 From: ARI WG Git Bot Date: Wed, 3 Jun 2026 09:37:37 +0000 Subject: [PATCH 10/36] Rebuild setuptools 82.0.1 for stack(s) cflinuxfs4, cflinuxfs5 --- manifest.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/manifest.yml b/manifest.yml index 038923f4..2226e6c4 100644 --- a/manifest.yml +++ b/manifest.yml @@ -236,8 +236,8 @@ dependencies: source_sha256: b4c059d5895f030e7df9663894ce3732bfa1b32cd3ab2883980266a45ce3cb3b - name: setuptools version: 82.0.1 - uri: https://buildpacks.cloudfoundry.org/dependencies/setuptools/setuptools_82.0.1_linux_noarch_any-stack_934b4323.tgz - sha256: 934b4323475131e04577a24eff3774f75a1219948f49c63afcd5e35a507d8ba7 + uri: https://buildpacks.cloudfoundry.org/dependencies/setuptools/setuptools_82.0.1_linux_noarch_cflinuxfs4_37ffb2f1.tgz + sha256: 37ffb2f161394d9ccb578cee2dca5a2432a24f48af7910a9546e3ef0af356bfe cf_stacks: - cflinuxfs4 - cflinuxfs5 From df16c59d4c539d0751eee56b7b5c9159741313a8 Mon Sep 17 00:00:00 2001 From: ARI WG Git Bot Date: Mon, 8 Jun 2026 03:13:42 +0000 Subject: [PATCH 11/36] Add pipenv 2026.6.2 for stack(s) cflinuxfs4, cflinuxfs5 --- manifest.yml | 24 ++++++++++++++++-------- 1 file changed, 16 insertions(+), 8 deletions(-) diff --git a/manifest.yml b/manifest.yml index 038923f4..a5bb3390 100644 --- a/manifest.yml +++ b/manifest.yml @@ -97,14 +97,6 @@ dependencies: - cflinuxfs3 source: https://files.pythonhosted.org/packages/ca/5b/8ce5227713d692913c186d9a3164eee0236fbc3eaca87d7e2bd5dbb1da36/pipenv-2024.4.1.tar.gz source_sha256: e8ea6105c1cdda7d5c19df7bd6439a006751f3d4e017602c791e7b51314adf84 -- name: pipenv - version: 2026.5.2 - uri: https://buildpacks.cloudfoundry.org/dependencies/pipenv/pipenv_2026.5.2_linux_noarch_cflinuxfs4_74c1a3ab.tgz - sha256: 74c1a3ab922ae87de22698eeec0aaa7ba54a1b7af767144eb52d34ef0c7acab5 - cf_stacks: - - cflinuxfs4 - source: https://files.pythonhosted.org/packages/00/bf/9e5a536eae91adcbed6ee9c44861250bdfdc42bf2663680ce44cf5253fdb/pipenv-2026.5.2.tar.gz - source_sha256: cf5985038a4cc4a1ffe9b48a2e580d2595245823dcc5684d07b1a53929ab47cc - name: pipenv version: 2026.5.2 uri: https://buildpacks.cloudfoundry.org/dependencies/pipenv/pipenv_2026.5.2_linux_noarch_cflinuxfs5_569f70b0.tgz @@ -113,6 +105,22 @@ dependencies: - cflinuxfs5 source: https://files.pythonhosted.org/packages/00/bf/9e5a536eae91adcbed6ee9c44861250bdfdc42bf2663680ce44cf5253fdb/pipenv-2026.5.2.tar.gz source_sha256: cf5985038a4cc4a1ffe9b48a2e580d2595245823dcc5684d07b1a53929ab47cc +- name: pipenv + version: 2026.6.2 + uri: https://buildpacks.cloudfoundry.org/dependencies/pipenv/pipenv_2026.6.2_linux_noarch_cflinuxfs4_e7ab4f20.tgz + sha256: e7ab4f20cc4b191369fa3b8818967fd2a23e7fc1331a0984a0f98c2f3fd12efd + cf_stacks: + - cflinuxfs4 + source: https://files.pythonhosted.org/packages/26/4e/24ece5e63a4a81034453970e2289896f977999550abee4dcf81f1e0e963e/pipenv-2026.6.2.tar.gz + source_sha256: fe513e97f3fc7027df22647aaf2b9de892f345f7e56dc0422e70b1213d641400 +- name: pipenv + version: 2026.6.2 + uri: https://buildpacks.cloudfoundry.org/dependencies/pipenv/pipenv_2026.6.2_linux_noarch_cflinuxfs5_5bec7356.tgz + sha256: 5bec7356540b18c3759d1bc2e6952c9d25fac4376123ddfbd9811e25911de313 + cf_stacks: + - cflinuxfs5 + source: https://files.pythonhosted.org/packages/26/4e/24ece5e63a4a81034453970e2289896f977999550abee4dcf81f1e0e963e/pipenv-2026.6.2.tar.gz + source_sha256: fe513e97f3fc7027df22647aaf2b9de892f345f7e56dc0422e70b1213d641400 - name: poetry-core version: 2.4.0 uri: https://buildpacks.cloudfoundry.org/dependencies/poetry-core/poetry-core_2.4.0_linux_noarch_cflinuxfs4_cd4ae6ac.tgz From 769af50cf99543b88d3f9988ac0d552e30e479a7 Mon Sep 17 00:00:00 2001 From: ARI WG Git Bot Date: Wed, 10 Jun 2026 14:04:25 +0000 Subject: [PATCH 12/36] Add python 3.14.6 for stack(s) cflinuxfs4, cflinuxfs5 --- manifest.yml | 24 ++++++++++++++++-------- 1 file changed, 16 insertions(+), 8 deletions(-) diff --git a/manifest.yml b/manifest.yml index 038923f4..185bd408 100644 --- a/manifest.yml +++ b/manifest.yml @@ -218,14 +218,6 @@ dependencies: - cflinuxfs3 source: https://www.python.org/ftp/python/3.14.2/Python-3.14.2.tgz source_sha256: c609e078adab90e2c6bacb6afafacd5eaf60cd94cf670f1e159565725fcd448d -- name: python - version: 3.14.4 - uri: https://buildpacks.cloudfoundry.org/dependencies/python/python_3.14.4_linux_x64_cflinuxfs4_c99dfa05.tgz - sha256: c99dfa053d8b47dab158af2e072d0a4c80c6593443cb97e759e45de1934afc96 - cf_stacks: - - cflinuxfs4 - source: https://www.python.org/ftp/python/3.14.4/Python-3.14.4.tgz - source_sha256: b4c059d5895f030e7df9663894ce3732bfa1b32cd3ab2883980266a45ce3cb3b - name: python version: 3.14.4 uri: https://buildpacks.cloudfoundry.org/dependencies/python/python_3.14.4_linux_x64_cflinuxfs5_ae27ea8c.tgz @@ -234,6 +226,22 @@ dependencies: - cflinuxfs5 source: https://www.python.org/ftp/python/3.14.4/Python-3.14.4.tgz source_sha256: b4c059d5895f030e7df9663894ce3732bfa1b32cd3ab2883980266a45ce3cb3b +- name: python + version: 3.14.6 + uri: https://buildpacks.cloudfoundry.org/dependencies/python/python_3.14.6_linux_x64_cflinuxfs4_c52b4106.tgz + sha256: c52b41063dd371cf395cbfd74e75768a0646a405fd4a01819bd2cb01089bd2d7 + cf_stacks: + - cflinuxfs4 + source: https://www.python.org/ftp/python/3.14.6/Python-3.14.6.tgz + source_sha256: 74d0d71d0600e477651a077101d6e62d1e2e69b8e992ba18c993dd643b7ba222 +- name: python + version: 3.14.6 + uri: https://buildpacks.cloudfoundry.org/dependencies/python/python_3.14.6_linux_x64_cflinuxfs5_2255dcee.tgz + sha256: 2255dcee486edf026b12492768b10ec01d3d79ee98d18f8a572b45c1704be6c5 + cf_stacks: + - cflinuxfs5 + source: https://www.python.org/ftp/python/3.14.6/Python-3.14.6.tgz + source_sha256: 74d0d71d0600e477651a077101d6e62d1e2e69b8e992ba18c993dd643b7ba222 - name: setuptools version: 82.0.1 uri: https://buildpacks.cloudfoundry.org/dependencies/setuptools/setuptools_82.0.1_linux_noarch_any-stack_934b4323.tgz From 64ce205c99243dae41d92132f823373c1e7b0956 Mon Sep 17 00:00:00 2001 From: ARI WG Git Bot Date: Wed, 10 Jun 2026 16:28:55 +0000 Subject: [PATCH 13/36] Add python 3.13.14 for stack(s) cflinuxfs4, cflinuxfs5 --- manifest.yml | 24 ++++++++++++++++-------- 1 file changed, 16 insertions(+), 8 deletions(-) diff --git a/manifest.yml b/manifest.yml index 038923f4..a3927665 100644 --- a/manifest.yml +++ b/manifest.yml @@ -194,14 +194,6 @@ dependencies: - cflinuxfs3 source: https://www.python.org/ftp/python/3.13.9/Python-3.13.9.tgz source_sha256: c4c066af19c98fb7835d473bebd7e23be84f6e9874d47db9e39a68ee5d0ce35c -- name: python - version: 3.13.13 - uri: https://buildpacks.cloudfoundry.org/dependencies/python/python_3.13.13_linux_x64_cflinuxfs4_8311abbf.tgz - sha256: 8311abbf60e3c061a70eabca62ccddba613ee0eeac790ec6f7e42b75213a05f1 - cf_stacks: - - cflinuxfs4 - source: https://www.python.org/ftp/python/3.13.13/Python-3.13.13.tgz - source_sha256: f9cde7b0e2ec8165d7326e2a0f59ea2686ce9d0c617dbbb3d66a7e54d31b74b9 - name: python version: 3.13.13 uri: https://buildpacks.cloudfoundry.org/dependencies/python/python_3.13.13_linux_x64_cflinuxfs5_953e784f.tgz @@ -210,6 +202,22 @@ dependencies: - cflinuxfs5 source: https://www.python.org/ftp/python/3.13.13/Python-3.13.13.tgz source_sha256: f9cde7b0e2ec8165d7326e2a0f59ea2686ce9d0c617dbbb3d66a7e54d31b74b9 +- name: python + version: 3.13.14 + uri: https://buildpacks.cloudfoundry.org/dependencies/python/python_3.13.14_linux_x64_cflinuxfs4_b80d4954.tgz + sha256: b80d495440e016c5b3e3fce4914d1971ae2c9ce921bcacd8df2499ee181a7c3b + cf_stacks: + - cflinuxfs4 + source: https://www.python.org/ftp/python/3.13.14/Python-3.13.14.tgz + source_sha256: 5ae535a36af0ebca6fca176ecb8197f5db9c1cb8c8f0cd12cdf1787046db1f41 +- name: python + version: 3.13.14 + uri: https://buildpacks.cloudfoundry.org/dependencies/python/python_3.13.14_linux_x64_cflinuxfs5_2345b267.tgz + sha256: 2345b267ba4fe4d8a61d0d9898fb64fa264c3f67baead6266fedbd340f7ad0be + cf_stacks: + - cflinuxfs5 + source: https://www.python.org/ftp/python/3.13.14/Python-3.13.14.tgz + source_sha256: 5ae535a36af0ebca6fca176ecb8197f5db9c1cb8c8f0cd12cdf1787046db1f41 - name: python version: 3.14.2 uri: https://buildpack-dependencies.tanzu.vmware.com/cf/python/python_3.14.2_linux_x64_cflinuxfs3_82c1798d.tgz From 610aa07cc703dd8f1eb7e0513a4294cbf9a1aa2f Mon Sep 17 00:00:00 2001 From: Tsvetelina Marinova Date: Fri, 26 Jun 2026 15:52:54 +0300 Subject: [PATCH 14/36] Remove pipenv v2026.5.2 for stack cflinuxfs5 as well as for stack cflinuxfs4 --- manifest.yml | 8 -------- 1 file changed, 8 deletions(-) diff --git a/manifest.yml b/manifest.yml index a5bb3390..bf9fac79 100644 --- a/manifest.yml +++ b/manifest.yml @@ -97,14 +97,6 @@ dependencies: - cflinuxfs3 source: https://files.pythonhosted.org/packages/ca/5b/8ce5227713d692913c186d9a3164eee0236fbc3eaca87d7e2bd5dbb1da36/pipenv-2024.4.1.tar.gz source_sha256: e8ea6105c1cdda7d5c19df7bd6439a006751f3d4e017602c791e7b51314adf84 -- name: pipenv - version: 2026.5.2 - uri: https://buildpacks.cloudfoundry.org/dependencies/pipenv/pipenv_2026.5.2_linux_noarch_cflinuxfs5_569f70b0.tgz - sha256: 569f70b09c3b3440c6385aad160bef6b3539fd7b6211a73bfe41600d8b3fdfad - cf_stacks: - - cflinuxfs5 - source: https://files.pythonhosted.org/packages/00/bf/9e5a536eae91adcbed6ee9c44861250bdfdc42bf2663680ce44cf5253fdb/pipenv-2026.5.2.tar.gz - source_sha256: cf5985038a4cc4a1ffe9b48a2e580d2595245823dcc5684d07b1a53929ab47cc - name: pipenv version: 2026.6.2 uri: https://buildpacks.cloudfoundry.org/dependencies/pipenv/pipenv_2026.6.2_linux_noarch_cflinuxfs4_e7ab4f20.tgz From 3c2b4ae5b6c9c5a2feda798968c4cfca7c261557 Mon Sep 17 00:00:00 2001 From: Tsvetelina Marinova Date: Fri, 26 Jun 2026 16:12:32 +0300 Subject: [PATCH 15/36] Remove python v3.13.13 for stack cflinuxfs5 as well as for stack cflinuxfs4 Remove python v3.13.13 for stack cflinuxfs5 as well as for stack cflinuxfs4 --- manifest.yml | 8 -------- 1 file changed, 8 deletions(-) diff --git a/manifest.yml b/manifest.yml index a3927665..d471782a 100644 --- a/manifest.yml +++ b/manifest.yml @@ -194,14 +194,6 @@ dependencies: - cflinuxfs3 source: https://www.python.org/ftp/python/3.13.9/Python-3.13.9.tgz source_sha256: c4c066af19c98fb7835d473bebd7e23be84f6e9874d47db9e39a68ee5d0ce35c -- name: python - version: 3.13.13 - uri: https://buildpacks.cloudfoundry.org/dependencies/python/python_3.13.13_linux_x64_cflinuxfs5_953e784f.tgz - sha256: 953e784f168dfcb66192b209181f2bbf4f9b6e554edb1938d367d7b1498aaa5f - cf_stacks: - - cflinuxfs5 - source: https://www.python.org/ftp/python/3.13.13/Python-3.13.13.tgz - source_sha256: f9cde7b0e2ec8165d7326e2a0f59ea2686ce9d0c617dbbb3d66a7e54d31b74b9 - name: python version: 3.13.14 uri: https://buildpacks.cloudfoundry.org/dependencies/python/python_3.13.14_linux_x64_cflinuxfs4_b80d4954.tgz From 7f0aa9b32dc442ff7f7990bb60b5bfc64daa2630 Mon Sep 17 00:00:00 2001 From: Tsvetelina Marinova Date: Fri, 26 Jun 2026 16:14:58 +0300 Subject: [PATCH 16/36] Remove python v3.14.4 for stack cflinuxfs5 as well as for stack cflinuxfs4 Remove python v3.14.4 for stack cflinuxfs5 as well as for stack cflinuxfs4 --- manifest.yml | 8 -------- 1 file changed, 8 deletions(-) diff --git a/manifest.yml b/manifest.yml index 185bd408..8929e23a 100644 --- a/manifest.yml +++ b/manifest.yml @@ -218,14 +218,6 @@ dependencies: - cflinuxfs3 source: https://www.python.org/ftp/python/3.14.2/Python-3.14.2.tgz source_sha256: c609e078adab90e2c6bacb6afafacd5eaf60cd94cf670f1e159565725fcd448d -- name: python - version: 3.14.4 - uri: https://buildpacks.cloudfoundry.org/dependencies/python/python_3.14.4_linux_x64_cflinuxfs5_ae27ea8c.tgz - sha256: ae27ea8c3e4b063be4f1dfbfcb37b65fe55be0c9812f275f56e68df96e7283ec - cf_stacks: - - cflinuxfs5 - source: https://www.python.org/ftp/python/3.14.4/Python-3.14.4.tgz - source_sha256: b4c059d5895f030e7df9663894ce3732bfa1b32cd3ab2883980266a45ce3cb3b - name: python version: 3.14.6 uri: https://buildpacks.cloudfoundry.org/dependencies/python/python_3.14.6_linux_x64_cflinuxfs4_c52b4106.tgz From c5c1ee5f174dd8a4227fe7c443330dbef8da8fd9 Mon Sep 17 00:00:00 2001 From: git Date: Mon, 29 Jun 2026 07:27:19 +0000 Subject: [PATCH 17/36] [ci skip] bump to 1.9.3 --- VERSION | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/VERSION b/VERSION index 8fdcf386..77fee73a 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -1.9.2 +1.9.3 From 54c2033a483c93c332ee7b0c336bc59bab393616 Mon Sep 17 00:00:00 2001 From: ARI WG Git Bot Date: Sat, 4 Jul 2026 16:24:27 +0000 Subject: [PATCH 18/36] Add setuptools 83.0.0, remove setuptools 82.0.1 for stack(s) cflinuxfs4, cflinuxfs5 --- manifest.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/manifest.yml b/manifest.yml index 4a67572d..b2504721 100644 --- a/manifest.yml +++ b/manifest.yml @@ -235,14 +235,14 @@ dependencies: source: https://www.python.org/ftp/python/3.14.6/Python-3.14.6.tgz source_sha256: 74d0d71d0600e477651a077101d6e62d1e2e69b8e992ba18c993dd643b7ba222 - name: setuptools - version: 82.0.1 - uri: https://buildpacks.cloudfoundry.org/dependencies/setuptools/setuptools_82.0.1_linux_noarch_cflinuxfs4_37ffb2f1.tgz - sha256: 37ffb2f161394d9ccb578cee2dca5a2432a24f48af7910a9546e3ef0af356bfe + version: 83.0.0 + uri: https://buildpacks.cloudfoundry.org/dependencies/setuptools/setuptools_83.0.0_linux_noarch_cflinuxfs4_37588691.tgz + sha256: 375886914059dcb03845fd7dbf7bfdd763f0c4f98c886f67d93dd68a1e833c6e cf_stacks: - cflinuxfs4 - cflinuxfs5 - source: https://files.pythonhosted.org/packages/4f/db/cfac1baf10650ab4d1c111714410d2fbb77ac5a616db26775db562c8fab2/setuptools-82.0.1.tar.gz - source_sha256: 7d872682c5d01cfde07da7bccc7b65469d3dca203318515ada1de5eda35efbf9 + source: https://files.pythonhosted.org/packages/34/26/f5d29e25ffdb535afef2d35cdb55b325298f96debd670da4c325e08d70f4/setuptools-83.0.0.tar.gz + source_sha256: 025bccbbf0fa05b6192bc64ae1e7b16e001fd6d6d4d5de03c97b1c1ade523bef include_files: - CHANGELOG - CONTRIBUTING.md From 3a68747f6a50091d5a2eea3ce9af90141b61226b Mon Sep 17 00:00:00 2001 From: ARI WG Git Bot Date: Fri, 10 Jul 2026 14:24:16 +0000 Subject: [PATCH 19/36] Add pip 26.1.2, remove pip 26.0.1 for stack(s) cflinuxfs4, cflinuxfs5 --- manifest.yml | 14 ++++++++------ 1 file changed, 8 insertions(+), 6 deletions(-) diff --git a/manifest.yml b/manifest.yml index b2504721..c24164d7 100644 --- a/manifest.yml +++ b/manifest.yml @@ -83,12 +83,14 @@ dependencies: source: https://files.pythonhosted.org/packages/20/16/650289cd3f43d5a2fadfd98c68bd1e1e7f2550a1a5326768cddfbcedb2c5/pip-25.2.tar.gz source_sha256: 578283f006390f85bb6282dffb876454593d637f5d1be494b5202ce4877e71f2 - name: pip - version: 26.0.1 - uri: https://buildpacks.cloudfoundry.org/dependencies/pip/pip_26.0.1_linux_noarch_any-stack_0750a38b.tgz - sha256: 0750a38b65c6038a0415a4ff15ef2df61fcaa6c1e5ec9d8c6678222dbac91306 - cf_stacks: [] - source: https://files.pythonhosted.org/packages/48/83/0d7d4e9efe3344b8e2fe25d93be44f64b65364d3c8d7bc6dc90198d5422e/pip-26.0.1.tar.gz - source_sha256: c4037d8a277c89b320abe636d59f91e6d0922d08a05b60e85e53b296613346d8 + version: 26.1.2 + uri: https://buildpacks.cloudfoundry.org/dependencies/pip/pip_26.1.2_linux_noarch_cflinuxfs4_4762cfe9.tgz + sha256: 4762cfe96db4ceff6907c79bd3c9b3f6c95e016bc02a4dafa741ffc6972da1de + cf_stacks: + - cflinuxfs4 + - cflinuxfs5 + source: https://files.pythonhosted.org/packages/01/91/47e7d486260f618783899587af63ccf7980fb60245c3e63dd4571c6b57ad/pip-26.1.2.tar.gz + source_sha256: f49cd134c61cf2fd75e0ce2676db03e4054504a5a4986d00f8299ae632dc4605 - name: pipenv version: 2024.4.1 uri: https://buildpacks.cloudfoundry.org/dependencies/pipenv/pipenv_2024.4.1_linux_noarch_cflinuxfs3_b3c74c78.tgz From 3e5308dd8ff82be2d8baa8e518fb8f34821d7958 Mon Sep 17 00:00:00 2001 From: Tsvetelina Marinova Date: Fri, 10 Jul 2026 17:46:33 +0300 Subject: [PATCH 20/36] Keep pip 25.2 just for stack cflinufs3 --- manifest.yml | 2 -- 1 file changed, 2 deletions(-) diff --git a/manifest.yml b/manifest.yml index c24164d7..e3234b8b 100644 --- a/manifest.yml +++ b/manifest.yml @@ -77,8 +77,6 @@ dependencies: uri: https://buildpacks.cloudfoundry.org/dependencies/pip/pip_25.2_linux_noarch_any-stack_7dc1e988.tgz sha256: 7dc1e9882eb18f53150261c3a0cde7d5a39cdb18843c930ee01db8582f6b4f27 cf_stacks: - - cflinuxfs5 - - cflinuxfs4 - cflinuxfs3 source: https://files.pythonhosted.org/packages/20/16/650289cd3f43d5a2fadfd98c68bd1e1e7f2550a1a5326768cddfbcedb2c5/pip-25.2.tar.gz source_sha256: 578283f006390f85bb6282dffb876454593d637f5d1be494b5202ce4877e71f2 From effa1f3d106495573c46e1610e9afc36ae02ce3d Mon Sep 17 00:00:00 2001 From: ARI WG Git Bot Date: Tue, 4 Aug 2026 00:36:52 +0000 Subject: [PATCH 21/36] Add pipenv 2026.7.1 for stack(s) cflinuxfs4, cflinuxfs5 --- manifest.yml | 24 ++++++++++++++++-------- 1 file changed, 16 insertions(+), 8 deletions(-) diff --git a/manifest.yml b/manifest.yml index e3234b8b..23c120a4 100644 --- a/manifest.yml +++ b/manifest.yml @@ -97,14 +97,6 @@ dependencies: - cflinuxfs3 source: https://files.pythonhosted.org/packages/ca/5b/8ce5227713d692913c186d9a3164eee0236fbc3eaca87d7e2bd5dbb1da36/pipenv-2024.4.1.tar.gz source_sha256: e8ea6105c1cdda7d5c19df7bd6439a006751f3d4e017602c791e7b51314adf84 -- name: pipenv - version: 2026.6.2 - uri: https://buildpacks.cloudfoundry.org/dependencies/pipenv/pipenv_2026.6.2_linux_noarch_cflinuxfs4_e7ab4f20.tgz - sha256: e7ab4f20cc4b191369fa3b8818967fd2a23e7fc1331a0984a0f98c2f3fd12efd - cf_stacks: - - cflinuxfs4 - source: https://files.pythonhosted.org/packages/26/4e/24ece5e63a4a81034453970e2289896f977999550abee4dcf81f1e0e963e/pipenv-2026.6.2.tar.gz - source_sha256: fe513e97f3fc7027df22647aaf2b9de892f345f7e56dc0422e70b1213d641400 - name: pipenv version: 2026.6.2 uri: https://buildpacks.cloudfoundry.org/dependencies/pipenv/pipenv_2026.6.2_linux_noarch_cflinuxfs5_5bec7356.tgz @@ -113,6 +105,22 @@ dependencies: - cflinuxfs5 source: https://files.pythonhosted.org/packages/26/4e/24ece5e63a4a81034453970e2289896f977999550abee4dcf81f1e0e963e/pipenv-2026.6.2.tar.gz source_sha256: fe513e97f3fc7027df22647aaf2b9de892f345f7e56dc0422e70b1213d641400 +- name: pipenv + version: 2026.7.1 + uri: https://buildpacks.cloudfoundry.org/dependencies/pipenv/pipenv_2026.7.1_linux_noarch_cflinuxfs4_3728085a.tgz + sha256: 3728085a9a01b467738efc9e4f6eb58acb4f9f33ab624d33cdea9616d1c0c547 + cf_stacks: + - cflinuxfs4 + source: https://files.pythonhosted.org/packages/e8/af/aebabe333f35f71220a860fb1f6de5ccd7942c4029ae09fce7aada5f9644/pipenv-2026.7.1.tar.gz + source_sha256: 29b9450d52eff3570b28f35d30586cccca68e89a579b92ce4f0b6b59aef30214 +- name: pipenv + version: 2026.7.1 + uri: https://buildpacks.cloudfoundry.org/dependencies/pipenv/pipenv_2026.7.1_linux_noarch_cflinuxfs5_d0df0b0f.tgz + sha256: d0df0b0f2a3e4a20402950bb766e7d474b22a93f1b4c86f9b2f63c033584fa33 + cf_stacks: + - cflinuxfs5 + source: https://files.pythonhosted.org/packages/e8/af/aebabe333f35f71220a860fb1f6de5ccd7942c4029ae09fce7aada5f9644/pipenv-2026.7.1.tar.gz + source_sha256: 29b9450d52eff3570b28f35d30586cccca68e89a579b92ce4f0b6b59aef30214 - name: poetry-core version: 2.4.1 uri: https://buildpacks.cloudfoundry.org/dependencies/poetry-core/poetry-core_2.4.1_linux_noarch_cflinuxfs4_e8608303.tgz From 3a3d6ae896fc94a2f59f39635319c99ef4dabb2c Mon Sep 17 00:00:00 2001 From: ARI WG Git Bot Date: Tue, 4 Aug 2026 20:42:11 +0000 Subject: [PATCH 22/36] Add flit-core 4.0.2, remove flit-core 3.12.0 for stack(s) cflinuxfs4, cflinuxfs5 --- manifest.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/manifest.yml b/manifest.yml index e3234b8b..8a1feb92 100644 --- a/manifest.yml +++ b/manifest.yml @@ -26,14 +26,14 @@ dependency_deprecation_dates: link: https://peps.python.org/pep-0745/ dependencies: - name: flit-core - version: 3.12.0 - uri: https://buildpacks.cloudfoundry.org/dependencies/flit-core/flit-core_3.12.0_linux_noarch_cflinuxfs4_2e12c5e8.tgz - sha256: 2e12c5e8572cdb9c2c4010eb133f9a49e219d12e18a3c81f7c8cc62ddb5d343e + version: 4.0.2 + uri: https://buildpacks.cloudfoundry.org/dependencies/flit-core/flit-core_4.0.2_linux_noarch_cflinuxfs4_7f2972b1.tgz + sha256: 7f2972b15de83bba90c322a2dcb003d17f711bc405666c42d892db78404ac045 cf_stacks: - cflinuxfs4 - cflinuxfs5 - source: https://files.pythonhosted.org/packages/69/59/b6fc2188dfc7ea4f936cd12b49d707f66a1cb7a1d2c16172963534db741b/flit_core-3.12.0.tar.gz - source_sha256: 18f63100d6f94385c6ed57a72073443e1a71a4acb4339491615d0f16d6ff01b2 + source: https://files.pythonhosted.org/packages/46/ef/34533186e76c526d9ec17a1ad9a10c7354cbfb20f51583cc36dfe4bdccd0/flit_core-4.0.2.tar.gz + source_sha256: b6929defd93884b584d7c87829e0e7b5c26ed6be17b0b873979019314aa841c8 - name: libffi version: 3.2.1 cf_stacks: From 855b74277c960755c9eaecd83ed0687b3b6b994b Mon Sep 17 00:00:00 2001 From: ARI WG Git Bot Date: Wed, 5 Aug 2026 15:23:53 +0000 Subject: [PATCH 23/36] Add python 3.13.15 for stack(s) cflinuxfs4, cflinuxfs5 --- manifest.yml | 24 ++++++++++++++++-------- 1 file changed, 16 insertions(+), 8 deletions(-) diff --git a/manifest.yml b/manifest.yml index e3234b8b..70e8fef8 100644 --- a/manifest.yml +++ b/manifest.yml @@ -194,14 +194,6 @@ dependencies: - cflinuxfs3 source: https://www.python.org/ftp/python/3.13.9/Python-3.13.9.tgz source_sha256: c4c066af19c98fb7835d473bebd7e23be84f6e9874d47db9e39a68ee5d0ce35c -- name: python - version: 3.13.14 - uri: https://buildpacks.cloudfoundry.org/dependencies/python/python_3.13.14_linux_x64_cflinuxfs4_b80d4954.tgz - sha256: b80d495440e016c5b3e3fce4914d1971ae2c9ce921bcacd8df2499ee181a7c3b - cf_stacks: - - cflinuxfs4 - source: https://www.python.org/ftp/python/3.13.14/Python-3.13.14.tgz - source_sha256: 5ae535a36af0ebca6fca176ecb8197f5db9c1cb8c8f0cd12cdf1787046db1f41 - name: python version: 3.13.14 uri: https://buildpacks.cloudfoundry.org/dependencies/python/python_3.13.14_linux_x64_cflinuxfs5_2345b267.tgz @@ -210,6 +202,22 @@ dependencies: - cflinuxfs5 source: https://www.python.org/ftp/python/3.13.14/Python-3.13.14.tgz source_sha256: 5ae535a36af0ebca6fca176ecb8197f5db9c1cb8c8f0cd12cdf1787046db1f41 +- name: python + version: 3.13.15 + uri: https://buildpacks.cloudfoundry.org/dependencies/python/python_3.13.15_linux_x64_cflinuxfs4_0c9cd9fd.tgz + sha256: 0c9cd9fd47b8ff4e14a324b3e6be999322a3846de371c9e2b2d63507d8a9e688 + cf_stacks: + - cflinuxfs4 + source: https://www.python.org/ftp/python/3.13.15/Python-3.13.15.tgz + source_sha256: c28d9d213c09b5b5ab2c29812950e12f746999e099b82894231be954b26baed9 +- name: python + version: 3.13.15 + uri: https://buildpacks.cloudfoundry.org/dependencies/python/python_3.13.15_linux_x64_cflinuxfs5_ab64d5e1.tgz + sha256: ab64d5e135a42461eddf766de302b2b9a1537620f1799e5348a5570bb6348691 + cf_stacks: + - cflinuxfs5 + source: https://www.python.org/ftp/python/3.13.15/Python-3.13.15.tgz + source_sha256: c28d9d213c09b5b5ab2c29812950e12f746999e099b82894231be954b26baed9 - name: python version: 3.14.2 uri: https://buildpack-dependencies.tanzu.vmware.com/cf/python/python_3.14.2_linux_x64_cflinuxfs3_82c1798d.tgz From 9f5ddb7004412b44a3995a89f9d453060a205bfc Mon Sep 17 00:00:00 2001 From: Tsvetelina Marinova Date: Fri, 7 Aug 2026 14:17:32 +0300 Subject: [PATCH 24/36] Remove python v3.13.14 for stack cflinuxfs5 as well --- manifest.yml | 8 -------- 1 file changed, 8 deletions(-) diff --git a/manifest.yml b/manifest.yml index 70e8fef8..863b95b7 100644 --- a/manifest.yml +++ b/manifest.yml @@ -194,14 +194,6 @@ dependencies: - cflinuxfs3 source: https://www.python.org/ftp/python/3.13.9/Python-3.13.9.tgz source_sha256: c4c066af19c98fb7835d473bebd7e23be84f6e9874d47db9e39a68ee5d0ce35c -- name: python - version: 3.13.14 - uri: https://buildpacks.cloudfoundry.org/dependencies/python/python_3.13.14_linux_x64_cflinuxfs5_2345b267.tgz - sha256: 2345b267ba4fe4d8a61d0d9898fb64fa264c3f67baead6266fedbd340f7ad0be - cf_stacks: - - cflinuxfs5 - source: https://www.python.org/ftp/python/3.13.14/Python-3.13.14.tgz - source_sha256: 5ae535a36af0ebca6fca176ecb8197f5db9c1cb8c8f0cd12cdf1787046db1f41 - name: python version: 3.13.15 uri: https://buildpacks.cloudfoundry.org/dependencies/python/python_3.13.15_linux_x64_cflinuxfs4_0c9cd9fd.tgz From 75955feec2e188591104ce4757ef4c024ec4342e Mon Sep 17 00:00:00 2001 From: ARI WG Git Bot Date: Sat, 8 Aug 2026 19:10:37 +0000 Subject: [PATCH 25/36] Add setuptools 84.0.0, remove setuptools 83.0.0 for stack(s) cflinuxfs4, cflinuxfs5 --- manifest.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/manifest.yml b/manifest.yml index e3234b8b..dc762907 100644 --- a/manifest.yml +++ b/manifest.yml @@ -235,14 +235,14 @@ dependencies: source: https://www.python.org/ftp/python/3.14.6/Python-3.14.6.tgz source_sha256: 74d0d71d0600e477651a077101d6e62d1e2e69b8e992ba18c993dd643b7ba222 - name: setuptools - version: 83.0.0 - uri: https://buildpacks.cloudfoundry.org/dependencies/setuptools/setuptools_83.0.0_linux_noarch_cflinuxfs4_37588691.tgz - sha256: 375886914059dcb03845fd7dbf7bfdd763f0c4f98c886f67d93dd68a1e833c6e + version: 84.0.0 + uri: https://buildpacks.cloudfoundry.org/dependencies/setuptools/setuptools_84.0.0_linux_noarch_cflinuxfs4_8f3cc13a.tgz + sha256: 8f3cc13ab625ddea59de04c0807253eda61c3db7cf7c23109ce9ef5998412a02 cf_stacks: - cflinuxfs4 - cflinuxfs5 - source: https://files.pythonhosted.org/packages/34/26/f5d29e25ffdb535afef2d35cdb55b325298f96debd670da4c325e08d70f4/setuptools-83.0.0.tar.gz - source_sha256: 025bccbbf0fa05b6192bc64ae1e7b16e001fd6d6d4d5de03c97b1c1ade523bef + source: https://files.pythonhosted.org/packages/6d/44/f5da03a8ef95d369145c5bb53050e7877c9f3d312e128605fd9504829143/setuptools-84.0.0.tar.gz + source_sha256: f4695c21257f0d9b537ec2692c941d02ee143b7cc1276941349a546573b2ef73 include_files: - CHANGELOG - CONTRIBUTING.md From cab49720b8b2cd70dfad14f23288d1e385daec3f Mon Sep 17 00:00:00 2001 From: ARI WG Git Bot Date: Wed, 12 Aug 2026 23:57:10 +0000 Subject: [PATCH 26/36] Add python 3.10.21 for stack(s) cflinuxfs4, cflinuxfs5 --- manifest.yml | 24 ++++++++++++++++-------- 1 file changed, 16 insertions(+), 8 deletions(-) diff --git a/manifest.yml b/manifest.yml index 2127cd35..428e69f4 100644 --- a/manifest.yml +++ b/manifest.yml @@ -130,14 +130,6 @@ dependencies: - cflinuxfs3 source: https://www.python.org/ftp/python/3.10.19/Python-3.10.19.tgz source_sha256: a078fb2d7a216071ebbe2e34b5f5355dd6b6e9b0cd1bacc4a41c63990c5a0eec -- name: python - version: 3.10.20 - uri: https://buildpacks.cloudfoundry.org/dependencies/python/python_3.10.20_linux_x64_cflinuxfs4_b4c18ea7.tgz - sha256: b4c18ea789c68f583899138a65f08dc1a576376239002cf1b01519e445fb7164 - cf_stacks: - - cflinuxfs4 - source: https://www.python.org/ftp/python/3.10.20/Python-3.10.20.tgz - source_sha256: 4ff5fd4c5bab803b935019f3e31d7219cebd6f870d00389cea53b88bbe935d1a - name: python version: 3.10.20 uri: https://buildpacks.cloudfoundry.org/dependencies/python/python_3.10.20_linux_x64_cflinuxfs5_8bb35886.tgz @@ -146,6 +138,22 @@ dependencies: - cflinuxfs5 source: https://www.python.org/ftp/python/3.10.20/Python-3.10.20.tgz source_sha256: 4ff5fd4c5bab803b935019f3e31d7219cebd6f870d00389cea53b88bbe935d1a +- name: python + version: 3.10.21 + uri: https://buildpacks.cloudfoundry.org/dependencies/python/python_3.10.21_linux_x64_cflinuxfs4_7a751c01.tgz + sha256: 7a751c01c0f0da9f8bdcedee40dba606cfb12c7ce9726a98de1074290eb55cdc + cf_stacks: + - cflinuxfs4 + source: https://www.python.org/ftp/python/3.10.21/Python-3.10.21.tgz + source_sha256: f276987f06270ae6c1fb4da620bd105edf78c31368c2f7e85e6c1d51c560b04b +- name: python + version: 3.10.21 + uri: https://buildpacks.cloudfoundry.org/dependencies/python/python_3.10.21_linux_x64_cflinuxfs5_00466825.tgz + sha256: '004668257b7e2ce1771b75218c3c3b8b0f9fd49973215efa9b5b445184163ee7' + cf_stacks: + - cflinuxfs5 + source: https://www.python.org/ftp/python/3.10.21/Python-3.10.21.tgz + source_sha256: f276987f06270ae6c1fb4da620bd105edf78c31368c2f7e85e6c1d51c560b04b - name: python version: 3.11.14 uri: https://buildpacks.cloudfoundry.org/dependencies/python/python_3.11.14_linux_x64_cflinuxfs3_294394be.tgz From 69605faed8a2abec3a3a594d646cd4ad8a3a080c Mon Sep 17 00:00:00 2001 From: ARI WG Git Bot Date: Thu, 13 Aug 2026 00:13:11 +0000 Subject: [PATCH 27/36] Add python 3.12.14 for stack(s) cflinuxfs4, cflinuxfs5 --- manifest.yml | 24 ++++++++++++++++-------- 1 file changed, 16 insertions(+), 8 deletions(-) diff --git a/manifest.yml b/manifest.yml index 2127cd35..ecae0008 100644 --- a/manifest.yml +++ b/manifest.yml @@ -170,14 +170,6 @@ dependencies: - cflinuxfs5 source: https://www.python.org/ftp/python/3.11.15/Python-3.11.15.tgz source_sha256: f4de1b10bd6c70cbb9fa1cd71fc5038b832747a74ee59d599c69ce4846defb50 -- name: python - version: 3.12.13 - uri: https://buildpacks.cloudfoundry.org/dependencies/python/python_3.12.13_linux_x64_cflinuxfs4_e63cf720.tgz - sha256: e63cf720801bdc46dda0e1eac12465451317340ba39268b435e7b5bb5b398b89 - cf_stacks: - - cflinuxfs4 - source: https://www.python.org/ftp/python/3.12.13/Python-3.12.13.tgz - source_sha256: '0816c4761c97ecdb3f50a3924de0a93fd78cb63ee8e6c04201ddfaedca500b0b' - name: python version: 3.12.13 uri: https://buildpacks.cloudfoundry.org/dependencies/python/python_3.12.13_linux_x64_cflinuxfs5_3d4387ec.tgz @@ -186,6 +178,22 @@ dependencies: - cflinuxfs5 source: https://www.python.org/ftp/python/3.12.13/Python-3.12.13.tgz source_sha256: '0816c4761c97ecdb3f50a3924de0a93fd78cb63ee8e6c04201ddfaedca500b0b' +- name: python + version: 3.12.14 + uri: https://buildpacks.cloudfoundry.org/dependencies/python/python_3.12.14_linux_x64_cflinuxfs4_5e116e64.tgz + sha256: 5e116e6421e20ae8b5e68a50080d44870882dcb4c01bb6000293241fa1de4238 + cf_stacks: + - cflinuxfs4 + source: https://www.python.org/ftp/python/3.12.14/Python-3.12.14.tgz + source_sha256: 6c6df908d2c3fd24e6d76869e92542abd0f33aec9dfc18df8875f89660286d43 +- name: python + version: 3.12.14 + uri: https://buildpacks.cloudfoundry.org/dependencies/python/python_3.12.14_linux_x64_cflinuxfs5_ba372238.tgz + sha256: ba372238ecbaa71d1c0e4ceb627e6d7912cc9f43bd6c0a1dd7dc0baa69babe75 + cf_stacks: + - cflinuxfs5 + source: https://www.python.org/ftp/python/3.12.14/Python-3.12.14.tgz + source_sha256: 6c6df908d2c3fd24e6d76869e92542abd0f33aec9dfc18df8875f89660286d43 - name: python version: 3.13.9 uri: https://buildpacks.cloudfoundry.org/dependencies/python/python_3.13.9_linux_x64_cflinuxfs3_1c04ba8c.tgz From 18f3860513a525d1ac8447c6906cfe9ca53652a7 Mon Sep 17 00:00:00 2001 From: ARI WG Git Bot Date: Thu, 13 Aug 2026 00:13:33 +0000 Subject: [PATCH 28/36] Add python 3.11.16 for stack(s) cflinuxfs4, cflinuxfs5 --- manifest.yml | 24 ++++++++++++++++-------- 1 file changed, 16 insertions(+), 8 deletions(-) diff --git a/manifest.yml b/manifest.yml index 2127cd35..0022104f 100644 --- a/manifest.yml +++ b/manifest.yml @@ -154,14 +154,6 @@ dependencies: - cflinuxfs3 source: https://www.python.org/ftp/python/3.11.14/Python-3.11.14.tgz source_sha256: 563d2a1b2a5ba5d5409b5ecd05a0e1bf9b028cf3e6a6f0c87a5dc8dc3f2d9182 -- name: python - version: 3.11.15 - uri: https://buildpacks.cloudfoundry.org/dependencies/python/python_3.11.15_linux_x64_cflinuxfs4_d89c37b3.tgz - sha256: d89c37b356478929b97231fb2d4090d0ecc06d4293459dabd7b8881250350647 - cf_stacks: - - cflinuxfs4 - source: https://www.python.org/ftp/python/3.11.15/Python-3.11.15.tgz - source_sha256: f4de1b10bd6c70cbb9fa1cd71fc5038b832747a74ee59d599c69ce4846defb50 - name: python version: 3.11.15 uri: https://buildpacks.cloudfoundry.org/dependencies/python/python_3.11.15_linux_x64_cflinuxfs5_240344f9.tgz @@ -170,6 +162,22 @@ dependencies: - cflinuxfs5 source: https://www.python.org/ftp/python/3.11.15/Python-3.11.15.tgz source_sha256: f4de1b10bd6c70cbb9fa1cd71fc5038b832747a74ee59d599c69ce4846defb50 +- name: python + version: 3.11.16 + uri: https://buildpacks.cloudfoundry.org/dependencies/python/python_3.11.16_linux_x64_cflinuxfs4_898462d1.tgz + sha256: 898462d1cb44ba8c39cc22389361c1d465fe065b19b1f23facf03489dd19e655 + cf_stacks: + - cflinuxfs4 + source: https://www.python.org/ftp/python/3.11.16/Python-3.11.16.tgz + source_sha256: 6c0bd76ab0ec7d94ed400b1497f01ac6c7751c8822615ee0855a3eb2d893ea76 +- name: python + version: 3.11.16 + uri: https://buildpacks.cloudfoundry.org/dependencies/python/python_3.11.16_linux_x64_cflinuxfs5_47af9519.tgz + sha256: 47af9519a8d56e5a27157462f8491ef4c3a434d6bb8cbe7f5cd3f1e41a422a6a + cf_stacks: + - cflinuxfs5 + source: https://www.python.org/ftp/python/3.11.16/Python-3.11.16.tgz + source_sha256: 6c0bd76ab0ec7d94ed400b1497f01ac6c7751c8822615ee0855a3eb2d893ea76 - name: python version: 3.12.13 uri: https://buildpacks.cloudfoundry.org/dependencies/python/python_3.12.13_linux_x64_cflinuxfs4_e63cf720.tgz From 733b7af9cdb6220297eba203af230c98b2ca7a29 Mon Sep 17 00:00:00 2001 From: ARI WG Git Bot Date: Thu, 13 Aug 2026 08:12:20 +0000 Subject: [PATCH 29/36] Add python 3.14.7 for stack(s) cflinuxfs4, cflinuxfs5 --- manifest.yml | 24 ++++++++++++++++-------- 1 file changed, 16 insertions(+), 8 deletions(-) diff --git a/manifest.yml b/manifest.yml index 2127cd35..d18effdd 100644 --- a/manifest.yml +++ b/manifest.yml @@ -218,14 +218,6 @@ dependencies: - cflinuxfs3 source: https://www.python.org/ftp/python/3.14.2/Python-3.14.2.tgz source_sha256: c609e078adab90e2c6bacb6afafacd5eaf60cd94cf670f1e159565725fcd448d -- name: python - version: 3.14.6 - uri: https://buildpacks.cloudfoundry.org/dependencies/python/python_3.14.6_linux_x64_cflinuxfs4_c52b4106.tgz - sha256: c52b41063dd371cf395cbfd74e75768a0646a405fd4a01819bd2cb01089bd2d7 - cf_stacks: - - cflinuxfs4 - source: https://www.python.org/ftp/python/3.14.6/Python-3.14.6.tgz - source_sha256: 74d0d71d0600e477651a077101d6e62d1e2e69b8e992ba18c993dd643b7ba222 - name: python version: 3.14.6 uri: https://buildpacks.cloudfoundry.org/dependencies/python/python_3.14.6_linux_x64_cflinuxfs5_2255dcee.tgz @@ -234,6 +226,22 @@ dependencies: - cflinuxfs5 source: https://www.python.org/ftp/python/3.14.6/Python-3.14.6.tgz source_sha256: 74d0d71d0600e477651a077101d6e62d1e2e69b8e992ba18c993dd643b7ba222 +- name: python + version: 3.14.7 + uri: https://buildpacks.cloudfoundry.org/dependencies/python/python_3.14.7_linux_x64_cflinuxfs4_71ab21e9.tgz + sha256: 71ab21e96a7e517d909ef93690810c465c173376bd552af3afbd7526cb5cfb66 + cf_stacks: + - cflinuxfs4 + source: https://www.python.org/ftp/python/3.14.7/Python-3.14.7.tgz + source_sha256: 62859805f6fdf25e2bcbf3fa3217801e1996887ca33e6a2af80674bdfa2dbe07 +- name: python + version: 3.14.7 + uri: https://buildpacks.cloudfoundry.org/dependencies/python/python_3.14.7_linux_x64_cflinuxfs5_4adf205c.tgz + sha256: 4adf205cffe4c63638723db2a7cc0dc17124703f4ee1e2dffed67aa959b9740b + cf_stacks: + - cflinuxfs5 + source: https://www.python.org/ftp/python/3.14.7/Python-3.14.7.tgz + source_sha256: 62859805f6fdf25e2bcbf3fa3217801e1996887ca33e6a2af80674bdfa2dbe07 - name: setuptools version: 84.0.0 uri: https://buildpacks.cloudfoundry.org/dependencies/setuptools/setuptools_84.0.0_linux_noarch_cflinuxfs4_8f3cc13a.tgz From 219fff929158b266030b8ee6c5e1090d1aa3b962 Mon Sep 17 00:00:00 2001 From: tnikolova82 <97507942+tnikolova82@users.noreply.github.com> Date: Fri, 14 Aug 2026 10:13:23 +0300 Subject: [PATCH 30/36] Update manifest.yml --- manifest.yml | 8 -------- 1 file changed, 8 deletions(-) diff --git a/manifest.yml b/manifest.yml index 428e69f4..8c75cfb9 100644 --- a/manifest.yml +++ b/manifest.yml @@ -130,14 +130,6 @@ dependencies: - cflinuxfs3 source: https://www.python.org/ftp/python/3.10.19/Python-3.10.19.tgz source_sha256: a078fb2d7a216071ebbe2e34b5f5355dd6b6e9b0cd1bacc4a41c63990c5a0eec -- name: python - version: 3.10.20 - uri: https://buildpacks.cloudfoundry.org/dependencies/python/python_3.10.20_linux_x64_cflinuxfs5_8bb35886.tgz - sha256: 8bb358865558b85b8561c8b1cc08575dec51bf847d01be2d425e1295a7234de5 - cf_stacks: - - cflinuxfs5 - source: https://www.python.org/ftp/python/3.10.20/Python-3.10.20.tgz - source_sha256: 4ff5fd4c5bab803b935019f3e31d7219cebd6f870d00389cea53b88bbe935d1a - name: python version: 3.10.21 uri: https://buildpacks.cloudfoundry.org/dependencies/python/python_3.10.21_linux_x64_cflinuxfs4_7a751c01.tgz From cfb8def37fe77bff2e6b5cb4a374b205df3d4aa3 Mon Sep 17 00:00:00 2001 From: tnikolova82 <97507942+tnikolova82@users.noreply.github.com> Date: Fri, 14 Aug 2026 10:24:03 +0300 Subject: [PATCH 31/36] Update manifest.yml --- manifest.yml | 8 -------- 1 file changed, 8 deletions(-) diff --git a/manifest.yml b/manifest.yml index ecae0008..b178c3f7 100644 --- a/manifest.yml +++ b/manifest.yml @@ -170,14 +170,6 @@ dependencies: - cflinuxfs5 source: https://www.python.org/ftp/python/3.11.15/Python-3.11.15.tgz source_sha256: f4de1b10bd6c70cbb9fa1cd71fc5038b832747a74ee59d599c69ce4846defb50 -- name: python - version: 3.12.13 - uri: https://buildpacks.cloudfoundry.org/dependencies/python/python_3.12.13_linux_x64_cflinuxfs5_3d4387ec.tgz - sha256: 3d4387eceedf5d24d3a2d8b6098049d02ccd0bf413a4e02c73eba845284d86f0 - cf_stacks: - - cflinuxfs5 - source: https://www.python.org/ftp/python/3.12.13/Python-3.12.13.tgz - source_sha256: '0816c4761c97ecdb3f50a3924de0a93fd78cb63ee8e6c04201ddfaedca500b0b' - name: python version: 3.12.14 uri: https://buildpacks.cloudfoundry.org/dependencies/python/python_3.12.14_linux_x64_cflinuxfs4_5e116e64.tgz From 202c5a784bc9d09ac983247666126769480ab074 Mon Sep 17 00:00:00 2001 From: tnikolova82 <97507942+tnikolova82@users.noreply.github.com> Date: Fri, 14 Aug 2026 10:24:40 +0300 Subject: [PATCH 32/36] Update manifest.yml --- manifest.yml | 8 -------- 1 file changed, 8 deletions(-) diff --git a/manifest.yml b/manifest.yml index 0022104f..62e7445e 100644 --- a/manifest.yml +++ b/manifest.yml @@ -154,14 +154,6 @@ dependencies: - cflinuxfs3 source: https://www.python.org/ftp/python/3.11.14/Python-3.11.14.tgz source_sha256: 563d2a1b2a5ba5d5409b5ecd05a0e1bf9b028cf3e6a6f0c87a5dc8dc3f2d9182 -- name: python - version: 3.11.15 - uri: https://buildpacks.cloudfoundry.org/dependencies/python/python_3.11.15_linux_x64_cflinuxfs5_240344f9.tgz - sha256: 240344f919c73c5ca96ac44c8a91faba0b8950fa36d4d81c50956988024ae06b - cf_stacks: - - cflinuxfs5 - source: https://www.python.org/ftp/python/3.11.15/Python-3.11.15.tgz - source_sha256: f4de1b10bd6c70cbb9fa1cd71fc5038b832747a74ee59d599c69ce4846defb50 - name: python version: 3.11.16 uri: https://buildpacks.cloudfoundry.org/dependencies/python/python_3.11.16_linux_x64_cflinuxfs4_898462d1.tgz From e5fd523ede9b5498b5e1849999da883e33dc856c Mon Sep 17 00:00:00 2001 From: tnikolova82 <97507942+tnikolova82@users.noreply.github.com> Date: Fri, 14 Aug 2026 10:25:13 +0300 Subject: [PATCH 33/36] Update manifest.yml --- manifest.yml | 8 -------- 1 file changed, 8 deletions(-) diff --git a/manifest.yml b/manifest.yml index d18effdd..6f98bf89 100644 --- a/manifest.yml +++ b/manifest.yml @@ -218,14 +218,6 @@ dependencies: - cflinuxfs3 source: https://www.python.org/ftp/python/3.14.2/Python-3.14.2.tgz source_sha256: c609e078adab90e2c6bacb6afafacd5eaf60cd94cf670f1e159565725fcd448d -- name: python - version: 3.14.6 - uri: https://buildpacks.cloudfoundry.org/dependencies/python/python_3.14.6_linux_x64_cflinuxfs5_2255dcee.tgz - sha256: 2255dcee486edf026b12492768b10ec01d3d79ee98d18f8a572b45c1704be6c5 - cf_stacks: - - cflinuxfs5 - source: https://www.python.org/ftp/python/3.14.6/Python-3.14.6.tgz - source_sha256: 74d0d71d0600e477651a077101d6e62d1e2e69b8e992ba18c993dd643b7ba222 - name: python version: 3.14.7 uri: https://buildpacks.cloudfoundry.org/dependencies/python/python_3.14.7_linux_x64_cflinuxfs4_71ab21e9.tgz From 57c00b11c80fc5b21b4d1288c74a0c4056fba7dd Mon Sep 17 00:00:00 2001 From: git Date: Mon, 17 Aug 2026 07:17:17 +0000 Subject: [PATCH 34/36] [ci skip] bump to 1.9.4 --- VERSION | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/VERSION b/VERSION index 77fee73a..d615fd0c 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -1.9.3 +1.9.4 From c4865038684677bddfd6a0779ca93c9e30ee1af8 Mon Sep 17 00:00:00 2001 From: ivanovac Date: Tue, 18 Aug 2026 16:03:48 +0300 Subject: [PATCH 35/36] Fix FIPS compatibility: use stack-specific binaries for pip, setuptools, flit-core, poetry-core - pip 26.1.2: separate cflinuxfs4/cflinuxfs5 builds (removes cflinuxfs4 binary used on cflinuxfs5) - setuptools 84.0.0: separate cflinuxfs4/cflinuxfs5 builds (replaces any-stack binary) - flit-core 4.0.2: separate cflinuxfs4/cflinuxfs5 builds (replaces any-stack 3.12.0) - poetry-core 2.4.1: separate cflinuxfs4/cflinuxfs5 builds (replaces cflinuxfs4 binary used on cflinuxfs5) - pip 25.2: narrowed to cflinuxfs3 only Fixes ssl.SSLError: [CRYPTO] unknown error in pip truststore on FIPS-enabled cflinuxfs5. Root cause: pip/setuptools/flit-core/poetry-core were built on cflinuxfs4 (Ubuntu 22.04) and used on cflinuxfs5 (Ubuntu 24.04 FIPS), causing OpenSSL incompatibility. Related: cloudfoundry/buildpacks-ci#668 --- manifest.yml | 68 ++++++++++++++++++++++++++++++++++++---------------- 1 file changed, 48 insertions(+), 20 deletions(-) diff --git a/manifest.yml b/manifest.yml index 98f8c8d4..4fb965b0 100644 --- a/manifest.yml +++ b/manifest.yml @@ -27,10 +27,17 @@ dependency_deprecation_dates: dependencies: - name: flit-core version: 3.12.0 - uri: https://buildpacks.cloudfoundry.org/dependencies/flit-core/flit-core_3.12.0_linux_noarch_any-stack_ce08b8fa.tgz - sha256: ce08b8faf08c0be08c4c8c5617442bf36641e8c1cc26e9c3ad295d70252edffb + uri: https://buildpacks.cloudfoundry.org/dependencies/flit-core/flit-core_3.12.0_linux_noarch_cflinuxfs4_37419af8.tgz + sha256: 37419af8c6ebb4e7665ef4d2ed0d92a7aa6d9f9dce2afcdf50467e6f1c8ea7ca cf_stacks: - cflinuxfs4 + source: https://files.pythonhosted.org/packages/69/59/b6fc2188dfc7ea4f936cd12b49d707f66a1cb7a1d2c16172963534db741b/flit_core-3.12.0.tar.gz + source_sha256: 18f63100d6f94385c6ed57a72073443e1a71a4acb4339491615d0f16d6ff01b2 +- name: flit-core + version: 3.12.0 + uri: https://buildpacks.cloudfoundry.org/dependencies/flit-core/flit-core_3.12.0_linux_noarch_cflinuxfs5_9c3d597a.tgz + sha256: 9c3d597a1afaeca6d26268e0c225d6d10ea11353c3640be4bb9c49e68aa34ff9 + cf_stacks: - cflinuxfs5 source: https://files.pythonhosted.org/packages/69/59/b6fc2188dfc7ea4f936cd12b49d707f66a1cb7a1d2c16172963534db741b/flit_core-3.12.0.tar.gz source_sha256: 18f63100d6f94385c6ed57a72073443e1a71a4acb4339491615d0f16d6ff01b2 @@ -77,18 +84,25 @@ dependencies: uri: https://buildpacks.cloudfoundry.org/dependencies/pip/pip_25.2_linux_noarch_any-stack_7dc1e988.tgz sha256: 7dc1e9882eb18f53150261c3a0cde7d5a39cdb18843c930ee01db8582f6b4f27 cf_stacks: - - cflinuxfs5 - - cflinuxfs4 - cflinuxfs3 source: https://files.pythonhosted.org/packages/20/16/650289cd3f43d5a2fadfd98c68bd1e1e7f2550a1a5326768cddfbcedb2c5/pip-25.2.tar.gz source_sha256: 578283f006390f85bb6282dffb876454593d637f5d1be494b5202ce4877e71f2 - name: pip - version: 26.0.1 - uri: https://buildpacks.cloudfoundry.org/dependencies/pip/pip_26.0.1_linux_noarch_any-stack_0750a38b.tgz - sha256: 0750a38b65c6038a0415a4ff15ef2df61fcaa6c1e5ec9d8c6678222dbac91306 - cf_stacks: [] - source: https://files.pythonhosted.org/packages/48/83/0d7d4e9efe3344b8e2fe25d93be44f64b65364d3c8d7bc6dc90198d5422e/pip-26.0.1.tar.gz - source_sha256: c4037d8a277c89b320abe636d59f91e6d0922d08a05b60e85e53b296613346d8 + version: 26.2.1 + uri: https://buildpacks.cloudfoundry.org/dependencies/pip/pip_26.2.1_linux_noarch_cflinuxfs4_22e7a825.tgz + sha256: 22e7a8258b20b0f50f713d1e506c228c1ca7620aa3b483b67266b90392eeb91e + cf_stacks: + - cflinuxfs4 + source: https://files.pythonhosted.org/packages/ae/15/4500e320e6b101ec3b719ae85b697d9940b6cda672bc555bd6016fc60c6f/pip-26.2.1.tar.gz + source_sha256: f6ad667e89a1fe78046c8f13232b247200f5258d7828f3f7883d660878e0813f +- name: pip + version: 26.2.1 + uri: https://buildpacks.cloudfoundry.org/dependencies/pip/pip_26.2.1_linux_noarch_cflinuxfs5_22e7a825.tgz + sha256: 22e7a8258b20b0f50f713d1e506c228c1ca7620aa3b483b67266b90392eeb91e + cf_stacks: + - cflinuxfs5 + source: https://files.pythonhosted.org/packages/ae/15/4500e320e6b101ec3b719ae85b697d9940b6cda672bc555bd6016fc60c6f/pip-26.2.1.tar.gz + source_sha256: f6ad667e89a1fe78046c8f13232b247200f5258d7828f3f7883d660878e0813f - name: pipenv version: 2024.4.1 uri: https://buildpacks.cloudfoundry.org/dependencies/pipenv/pipenv_2024.4.1_linux_noarch_cflinuxfs3_b3c74c78.tgz @@ -114,14 +128,21 @@ dependencies: source: https://files.pythonhosted.org/packages/00/bf/9e5a536eae91adcbed6ee9c44861250bdfdc42bf2663680ce44cf5253fdb/pipenv-2026.5.2.tar.gz source_sha256: cf5985038a4cc4a1ffe9b48a2e580d2595245823dcc5684d07b1a53929ab47cc - name: poetry-core - version: 2.3.2 - uri: https://buildpacks.cloudfoundry.org/dependencies/poetry-core/poetry-core_2.3.2_linux_noarch_cflinuxfs4_d72fba6b.tgz - sha256: d72fba6be08a3ba47acce01261b14cd5a54100fea3c9e3ede867ca7d5c207397 + version: 2.4.1 + uri: https://buildpacks.cloudfoundry.org/dependencies/poetry-core/poetry-core_2.4.1_linux_noarch_cflinuxfs4_a87a0beb.tgz + sha256: a87a0beb31ec3dcf74cafb3c98376784b2bdd422fb2c14d4a527b2ee9e3e4f2e cf_stacks: - cflinuxfs4 + source: https://files.pythonhosted.org/packages/b2/f2/fa88c58efb9a737c7e0e40e470edd0973fe33f0f277d24dcf17454b50974/poetry_core-2.4.1.tar.gz + source_sha256: 89dceb6c10e9c6d8650a16183400e3c9ff9ddee13b0a81023b5575334a2b3744 +- name: poetry-core + version: 2.4.1 + uri: https://buildpacks.cloudfoundry.org/dependencies/poetry-core/poetry-core_2.4.1_linux_noarch_cflinuxfs5_d80c5384.tgz + sha256: d80c5384da537f0e70b45bd617342a5976a87d1e6ca7492a8c2bf9d94005bd28 + cf_stacks: - cflinuxfs5 - source: https://files.pythonhosted.org/packages/10/48/5b4f344c252ee2f75051b6bf7dfb68ab53aa00a107f5f8e5cbf795701dad/poetry_core-2.3.2.tar.gz - source_sha256: 20cb71be27b774628da9f384effd9183dfceb53bcef84063248a8672aa47031f + source: https://files.pythonhosted.org/packages/b2/f2/fa88c58efb9a737c7e0e40e470edd0973fe33f0f277d24dcf17454b50974/poetry_core-2.4.1.tar.gz + source_sha256: 89dceb6c10e9c6d8650a16183400e3c9ff9ddee13b0a81023b5575334a2b3744 - name: python version: 3.10.19 uri: https://buildpacks.cloudfoundry.org/dependencies/python/python_3.10.19_linux_x64_cflinuxfs3_d754b71d.tgz @@ -235,14 +256,21 @@ dependencies: source: https://www.python.org/ftp/python/3.14.4/Python-3.14.4.tgz source_sha256: b4c059d5895f030e7df9663894ce3732bfa1b32cd3ab2883980266a45ce3cb3b - name: setuptools - version: 82.0.1 - uri: https://buildpacks.cloudfoundry.org/dependencies/setuptools/setuptools_82.0.1_linux_noarch_any-stack_934b4323.tgz - sha256: 934b4323475131e04577a24eff3774f75a1219948f49c63afcd5e35a507d8ba7 + version: 84.0.0 + uri: https://buildpacks.cloudfoundry.org/dependencies/setuptools/setuptools_84.0.0_linux_noarch_cflinuxfs4_dc798ecb.tgz + sha256: dc798ecb1eb2ed9375f94fa2b9bbedd0516f0184e6cb33598b94a4e3bbe4cc82 cf_stacks: - cflinuxfs4 + source: https://files.pythonhosted.org/packages/6d/44/f5da03a8ef95d369145c5bb53050e7877c9f3d312e128605fd9504829143/setuptools-84.0.0.tar.gz + source_sha256: f4695c21257f0d9b537ec2692c941d02ee143b7cc1276941349a546573b2ef73 +- name: setuptools + version: 84.0.0 + uri: https://buildpacks.cloudfoundry.org/dependencies/setuptools/setuptools_84.0.0_linux_noarch_cflinuxfs5_bbb8d7e4.tgz + sha256: bbb8d7e47d541c55ff4a99808118a4ffdd2a5418615d0236b8a33d76335c0a06 + cf_stacks: - cflinuxfs5 - source: https://files.pythonhosted.org/packages/4f/db/cfac1baf10650ab4d1c111714410d2fbb77ac5a616db26775db562c8fab2/setuptools-82.0.1.tar.gz - source_sha256: 7d872682c5d01cfde07da7bccc7b65469d3dca203318515ada1de5eda35efbf9 + source: https://files.pythonhosted.org/packages/6d/44/f5da03a8ef95d369145c5bb53050e7877c9f3d312e128605fd9504829143/setuptools-84.0.0.tar.gz + source_sha256: f4695c21257f0d9b537ec2692c941d02ee143b7cc1276941349a546573b2ef73 include_files: - CHANGELOG - CONTRIBUTING.md From b694c1934bb95936435dc0690f86dee599f63741 Mon Sep 17 00:00:00 2001 From: git Date: Wed, 19 Aug 2026 11:40:58 +0000 Subject: [PATCH 36/36] [ci skip] bump to 1.9.5 --- VERSION | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/VERSION b/VERSION index d615fd0c..158c7472 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -1.9.4 +1.9.5