Skip to content

Commit

Permalink
Merge pull request #352 from kmaehashi/drop-py38
Browse files Browse the repository at this point in the history
Drop support for Python 3.8
  • Loading branch information
emcastillo authored Jul 5, 2023
2 parents b828527 + 6b9e784 commit 1cbf616
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 11 deletions.
6 changes: 3 additions & 3 deletions .pfnci/build_submit.sh
Original file line number Diff line number Diff line change
Expand Up @@ -30,16 +30,16 @@ submit_job() {
}

# sdist
submit_job cupy-wheel-linux ".pfnci/wheel-linux/main.sh sdist 3.8 ${BRANCH} ${JOB_GROUP}"
submit_job cupy-wheel-linux ".pfnci/wheel-linux/main.sh sdist 3.9 ${BRANCH} ${JOB_GROUP}"

# wheels (Linux)
for CUDA in 10.2 11.0 11.1 11.x 12.x; do
submit_job cupy-wheel-linux ".pfnci/wheel-linux/main.sh ${CUDA} 3.8,3.9,3.10,3.11 ${BRANCH} ${JOB_GROUP}"
submit_job cupy-wheel-linux ".pfnci/wheel-linux/main.sh ${CUDA} 3.9,3.10,3.11 ${BRANCH} ${JOB_GROUP}"
done

# wheels (Windows)
for CUDA in 10.2 11.0 11.1 11.x 12.x; do
for PYTHON in 3.8 3.9 3.10 3.11; do
for PYTHON in 3.9 3.10 3.11; do
submit_job cupy-wheel-win ".pfnci\\wheel-windows\\main.bat ${CUDA} ${PYTHON} ${BRANCH} ${JOB_GROUP}"
done
done
Expand Down
6 changes: 3 additions & 3 deletions .pfnci/config.pbtxt
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ configs {
time_limit {
seconds: 10800
}
command: ".pfnci/wheel-linux/main.sh 12.x 3.8"
command: ".pfnci/wheel-linux/main.sh 12.x 3.9"
}
}
configs {
Expand All @@ -24,7 +24,7 @@ configs {
time_limit {
seconds: 18000
}
command: ".pfnci/wheel-linux/main.sh 10.2-jetson 3.8"
command: ".pfnci/wheel-linux/main.sh 10.2-jetson 3.9"
environment_variables { key: "CUPY_RELEASE_SKIP_VERIFY" value: "1" }
}
}
Expand All @@ -39,7 +39,7 @@ configs {
time_limit {
seconds: 10800
}
command: ".pfnci/wheel-linux/main.sh rocm-5.0 3.8"
command: ".pfnci/wheel-linux/main.sh rocm-5.0 3.9"
environment_variables { key: "CUPY_RELEASE_SKIP_VERIFY" value: "1" }
}
}
Expand Down
5 changes: 0 additions & 5 deletions dist_config.py
Original file line number Diff line number Diff line change
Expand Up @@ -311,11 +311,6 @@
# - `python_tag`: a CPython implementation tag
# - `abi_tag`: a CPython ABI tag
WHEEL_PYTHON_VERSIONS = {
'3.8': {
'pyenv': '3.8.11',
'python_tag': 'cp38',
'abi_tag': 'cp38',
},
'3.9': {
'pyenv': '3.9.0',
'python_tag': 'cp39',
Expand Down

0 comments on commit 1cbf616

Please sign in to comment.