Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[Python] Support python3.11/12 #1064

Merged
merged 17 commits into from
Nov 21, 2023
Prev Previous commit
Next Next commit
support python 3.11 & 3.12
  • Loading branch information
chaokunyang committed Nov 21, 2023
commit 3970fe821e147d0d66f64909b782b199d02a7df7
2 changes: 1 addition & 1 deletion .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ jobs:
ci/deploy.sh bump_py_version $version
- name: Build a binary wheel
run: |
pyversion = $(python -V | cut -d' ' -f2)
pyversion=$(python -V | cut -d' ' -f2)
if [[ $pyversion == 3.11.* || $pyversion == 3.12.* ]]; then
pip install pyarrow==7.0.1
sed -i -E "s/pyarrow_version = .*/pyarrow_version = \"7.0.1\"/" python/setup.py
Expand Down