Skip to content

Commit

Permalink
Update to Python 3.10.14, update CDN location
Browse files Browse the repository at this point in the history
Also updates pip / pip-tools
  • Loading branch information
jeohist authored and djvdorp committed Aug 22, 2024
1 parent 136edf8 commit e8162ed
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 9 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ jobs:
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: 3.10.13
python-version: 3.10.14
cache: pip
- name: Install Python requirements
run: make install_requirements
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ jobs:
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: 3.10.13
python-version: 3.10.14
cache: pip
- name: Install Python requirements
run: make install_requirements
Expand Down
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@ TEST_FILES ?= tests/integration/test_*.py
VERSION ?= $(shell git tag --list --sort=-version:refname "v*" | head -n 1)
COMMIT ?= $(shell git rev-parse --short HEAD)

PIP_TOOLS_VERSION ?= 7.4.0
PIP_VERSION ?= 24.0
PIP_TOOLS_VERSION ?= 7.4.1
PIP_VERSION ?= 24.1.2
PYTHON_PLATFORM ?= manylinux2014_x86_64
PYTHON_VERSION ?= 310

Expand Down
2 changes: 1 addition & 1 deletion bin/install-python
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ function setup_online(){
install_dir="$2"
buildpack_dir="$3"

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

function get_python_from_manifest() {
Expand Down
9 changes: 5 additions & 4 deletions dependencies-stage.yml
Original file line number Diff line number Diff line change
@@ -1,8 +1,9 @@
---
# https://github.com/cloudfoundry/python-buildpack/blob/master/manifest.yml
- name: python
version: 3.10.13
uri: https://cdn.mendix.com/tmp-buildpacks/python_3.10.13_linux_x64_cflinuxfs4_04ab8c1b.tgz
sha256: 04ab8c1b6b0d1f8fd8a03d932bf8cc6744843ad12bb5e801784b7ff470aa7401
version: 3.10.14
uri: https://cdn.mendix.com/mx-buildpack/python/python_3.10.14_linux_x64_cflinuxfs4_dda5228c.tgz
sha256: dda5228c36196f8a7346767ad9c9ac774ec270aa55065beb8d3d052d652b9120
cf_stacks:
- cflinuxfs4
source_sha256: 698ec55234c1363bd813b460ed53b0f108877c7a133d48bde9a50a1eb57b7e65
source_sha256: cefea32d3be89c02436711c95a45c7f8e880105514b78680c14fe76f5709a0f6

0 comments on commit e8162ed

Please sign in to comment.