From 890e0f17c7070d3e63db6da5667795075a07e7e7 Mon Sep 17 00:00:00 2001 From: liweibin02 Date: Tue, 26 Sep 2023 14:49:30 +0800 Subject: [PATCH 1/3] remove py39 in github action --- .github/workflows/build_and_upload_PyPI.yml | 2 +- .github/workflows/manully_test_PYPI.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build_and_upload_PyPI.yml b/.github/workflows/build_and_upload_PyPI.yml index e9d874ea..7f298eba 100644 --- a/.github/workflows/build_and_upload_PyPI.yml +++ b/.github/workflows/build_and_upload_PyPI.yml @@ -13,7 +13,7 @@ jobs: matrix: os: [ 'ubuntu-latest', 'macos-latest' ] arch: [ 'x86_64' ] - cibw_python: [ 'cp36*', 'cp37*', 'cp38*', 'cp39*' ] + cibw_python: [ 'cp36*', 'cp37*', 'cp38*', ] manylinux: [ 'manylinux2014', 'manylinux1' ] steps: - uses: actions/checkout@v2 diff --git a/.github/workflows/manully_test_PYPI.yml b/.github/workflows/manully_test_PYPI.yml index 36825dee..67048f45 100644 --- a/.github/workflows/manully_test_PYPI.yml +++ b/.github/workflows/manully_test_PYPI.yml @@ -11,7 +11,7 @@ jobs: matrix: os: [ 'ubuntu-latest', 'macos-latest' ] arch: [ 'x86_64' ] - cibw_python: [ 'cp36*', 'cp37*', 'cp38*', 'cp39*' ] + cibw_python: [ 'cp36*', 'cp37*', 'cp38*' ] manylinux: [ 'manylinux2014', 'manylinux1' ] steps: - uses: actions/checkout@v2 From ab454b8aa3f8f32f759ca9ca7cd59f129069346f Mon Sep 17 00:00:00 2001 From: liweibin02 Date: Tue, 26 Sep 2023 15:06:53 +0800 Subject: [PATCH 2/3] update workflow file --- .github/workflows/build_and_upload_PyPI.yml | 2 +- .github/workflows/manully_test_PYPI.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build_and_upload_PyPI.yml b/.github/workflows/build_and_upload_PyPI.yml index 7f298eba..a524235c 100644 --- a/.github/workflows/build_and_upload_PyPI.yml +++ b/.github/workflows/build_and_upload_PyPI.yml @@ -38,7 +38,7 @@ jobs: CIBW_BUILD: ${{ matrix.cibw_python }} CIBW_ARCHS: ${{ matrix.arch }} CIBW_MANYLINUX_X86_64_IMAGE: ${{ matrix.manylinux }} - CIBW_BEFORE_BUILD: "pip install -r requirements.txt" + CIBW_BEFORE_BUILD: "pip install -r requirements.txt cython>=0.29.21 numpy==1.19.0" CIBW_SKIP: "*-musllinux_*" CIBW_BEFORE_ALL_LINUX: > yum -y update && diff --git a/.github/workflows/manully_test_PYPI.yml b/.github/workflows/manully_test_PYPI.yml index 67048f45..c3f934bd 100644 --- a/.github/workflows/manully_test_PYPI.yml +++ b/.github/workflows/manully_test_PYPI.yml @@ -36,7 +36,7 @@ jobs: CIBW_BUILD: ${{ matrix.cibw_python }} CIBW_ARCHS: ${{ matrix.arch }} CIBW_MANYLINUX_X86_64_IMAGE: ${{ matrix.manylinux }} - CIBW_BEFORE_BUILD: "pip install -r requirements.txt" + CIBW_BEFORE_BUILD: "pip install -r requirements.txt cython>=0.29.21 numpy==1.19.0" CIBW_SKIP: "*-musllinux_*" CIBW_BEFORE_ALL_LINUX: > yum -y update && From 934aa2f8585b38f206eae231acbd03e484d4d97c Mon Sep 17 00:00:00 2001 From: liweibin02 Date: Tue, 26 Sep 2023 15:30:59 +0800 Subject: [PATCH 3/3] update version --- docs/source/conf.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/source/conf.py b/docs/source/conf.py index ad4db2d5..a1c34078 100644 --- a/docs/source/conf.py +++ b/docs/source/conf.py @@ -43,7 +43,7 @@ author = 'PaddlePaddle' # The full version, including alpha/beta/rc tags -release = '2.2.4' +release = '2.2.6' # -- General configuration ---------------------------------------------------