summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStefan Behnel <stefan_ml@behnel.de>2022-05-31 07:43:28 +0200
committerStefan Behnel <stefan_ml@behnel.de>2022-05-31 07:43:28 +0200
commit897ebfa002fe5ec773ffe8851721047fedcc6928 (patch)
treef6bee345f58ab4bbdfac688aa276f2c7b57afd86
parent853c9e9cbf1c82d1ad3c096362372a048108905e (diff)
downloadpython-lxml-897ebfa002fe5ec773ffe8851721047fedcc6928.tar.gz
Update macOS deployment target version from 10.14 to 10.15 since 10.14 starts failing in the current build environment.
-rw-r--r--.github/workflows/ci.yml2
-rw-r--r--.github/workflows/wheels.yml2
2 files changed, 2 insertions, 2 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml
index fc91d64c..51d77a4e 100644
--- a/.github/workflows/ci.yml
+++ b/.github/workflows/ci.yml
@@ -91,7 +91,7 @@ jobs:
env:
OS_NAME: ${{ matrix.os }}
PYTHON_VERSION: ${{ matrix.python-version }}
- MACOSX_DEPLOYMENT_TARGET: 10.14
+ MACOSX_DEPLOYMENT_TARGET: 10.15
LIBXML2_VERSION: 2.9.14
LIBXSLT_VERSION: 1.1.35
COVERAGE: false
diff --git a/.github/workflows/wheels.yml b/.github/workflows/wheels.yml
index 999133d3..e96753ad 100644
--- a/.github/workflows/wheels.yml
+++ b/.github/workflows/wheels.yml
@@ -122,7 +122,7 @@ jobs:
python_version: ["2.7", "3.6", "3.7", "3.8", "3.9", "3.10", "pypy-3.7-v7.3.3", "pypy-3.8-v7.3.7"]
runs-on: ${{ matrix.os }}
- env: { LIBXML2_VERSION: 2.9.14, LIBXSLT_VERSION: 1.1.35, MACOSX_DEPLOYMENT_TARGET: 10.14 }
+ env: { LIBXML2_VERSION: 2.9.14, LIBXSLT_VERSION: 1.1.35, MACOSX_DEPLOYMENT_TARGET: 10.15 }
steps:
- uses: actions/checkout@v2