Skip to content

Commit e8162ed

Browse files
jeohistddo-mendix
authored andcommitted
Update to Python 3.10.14, update CDN location
Also updates pip / pip-tools
1 parent 136edf8 commit e8162ed

5 files changed

Lines changed: 10 additions & 9 deletions

File tree

.github/workflows/build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ jobs:
4848
- name: Set up Python
4949
uses: actions/setup-python@v5
5050
with:
51-
python-version: 3.10.13
51+
python-version: 3.10.14
5252
cache: pip
5353
- name: Install Python requirements
5454
run: make install_requirements

.github/workflows/test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ jobs:
6767
- name: Set up Python
6868
uses: actions/setup-python@v5
6969
with:
70-
python-version: 3.10.13
70+
python-version: 3.10.14
7171
cache: pip
7272
- name: Install Python requirements
7373
run: make install_requirements

Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@ TEST_FILES ?= tests/integration/test_*.py
55
VERSION ?= $(shell git tag --list --sort=-version:refname "v*" | head -n 1)
66
COMMIT ?= $(shell git rev-parse --short HEAD)
77

8-
PIP_TOOLS_VERSION ?= 7.4.0
9-
PIP_VERSION ?= 24.0
8+
PIP_TOOLS_VERSION ?= 7.4.1
9+
PIP_VERSION ?= 24.1.2
1010
PYTHON_PLATFORM ?= manylinux2014_x86_64
1111
PYTHON_VERSION ?= 310
1212

bin/install-python

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ function setup_online(){
3939
install_dir="$2"
4040
buildpack_dir="$3"
4141

42-
curl -Ls "https://cdn.mendix.com/tmp-buildpacks/python_3.10.13_linux_x64_cflinuxfs4_04ab8c1b.tgz" | tar -xzf - -C "$install_dir"
42+
curl -Ls "https://cdn.mendix.com/mx-buildpack/python/python_3.10.14_linux_x64_cflinuxfs4_dda5228c.tgz" | tar -xzf - -C "$install_dir"
4343
}
4444

4545
function get_python_from_manifest() {

dependencies-stage.yml

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,9 @@
11
---
2+
# https://github.com/cloudfoundry/python-buildpack/blob/master/manifest.yml
23
- name: python
3-
version: 3.10.13
4-
uri: https://cdn.mendix.com/tmp-buildpacks/python_3.10.13_linux_x64_cflinuxfs4_04ab8c1b.tgz
5-
sha256: 04ab8c1b6b0d1f8fd8a03d932bf8cc6744843ad12bb5e801784b7ff470aa7401
4+
version: 3.10.14
5+
uri: https://cdn.mendix.com/mx-buildpack/python/python_3.10.14_linux_x64_cflinuxfs4_dda5228c.tgz
6+
sha256: dda5228c36196f8a7346767ad9c9ac774ec270aa55065beb8d3d052d652b9120
67
cf_stacks:
78
- cflinuxfs4
8-
source_sha256: 698ec55234c1363bd813b460ed53b0f108877c7a133d48bde9a50a1eb57b7e65
9+
source_sha256: cefea32d3be89c02436711c95a45c7f8e880105514b78680c14fe76f5709a0f6

0 commit comments

Comments
 (0)