Skip to content

Commit

Permalink
Merge pull request #578 from PaddlePaddle/action
Browse files Browse the repository at this point in the history
remove py39 in github action
  • Loading branch information
DesmonDay committed Sep 26, 2023
2 parents 076c72c + 934aa2f commit 6dbb47c
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build_and_upload_PyPI.yml
Expand Up @@ -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
Expand All @@ -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 &&
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/manully_test_PYPI.yml
Expand Up @@ -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
Expand All @@ -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 &&
Expand Down
2 changes: 1 addition & 1 deletion docs/source/conf.py
Expand Up @@ -43,7 +43,7 @@
author = 'PaddlePaddle'

# The full version, including alpha/beta/rc tags
release = '2.2.4'
release = '2.2.6'

# -- General configuration ---------------------------------------------------

Expand Down

0 comments on commit 6dbb47c

Please sign in to comment.