Skip to content

Commit 5c4a783

Browse files
authored
infra: use python 3.12 for release (#1836)
## Which issue does this PR close? <!-- We generally require a GitHub issue to be filed for all bug fixes and enhancements and this helps us generate change logs for our releases. You can link an issue to this PR using the GitHub syntax. For example `Closes #123` indicates that this PR will close issue #123. --> - Closes #. ## What changes are included in this PR? #1796 removed python 3.9 support Lets use python 3.12 for release <!-- Provide a summary of the modifications in this PR. List the main changes such as new features, bug fixes, refactoring, or any other updates. --> ## Are these changes tested? <!-- Specify what test covers (unit test, integration test, etc.). If tests are not included in your PR, please explain why (for example, are they covered by existing tests)? -->
1 parent 5c46965 commit 5c4a783

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

.github/workflows/release_python.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -146,7 +146,7 @@ jobs:
146146
147147
- uses: actions/setup-python@v6
148148
with:
149-
python-version: 3.9
149+
python-version: 3.12
150150
- name: Setup Rust toolchain
151151
uses: ./.github/actions/setup-builder
152152
with:

.github/workflows/release_python_nightly.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@ jobs:
8686

8787
- uses: actions/setup-python@v6
8888
with:
89-
python-version: 3.9
89+
python-version: 3.12
9090

9191
- name: Setup Rust toolchain
9292
uses: ./.github/actions/setup-builder
@@ -133,3 +133,4 @@ jobs:
133133
repository-url: https://test.pypi.org/legacy/
134134
skip-existing: true
135135
packages-dir: bindings/python/dist
136+
verbose: true

0 commit comments

Comments
 (0)