Skip to content

Commit 23358e3

Browse files
Backport PR #49460 on branch 1.5.x ((🎁) add python 3.11 to sdist.yml) (#49471)
Backport PR #49460: (🎁) add python 3.11 to sdist.yml Co-authored-by: KotlinIsland <[email protected]>
1 parent 1e2cab9 commit 23358e3

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

β€Ž.github/workflows/sdist.yml

+4-2
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ jobs:
3030
strategy:
3131
fail-fast: false
3232
matrix:
33-
python-version: ["3.8", "3.9", "3.10"]
33+
python-version: ["3.8", "3.9", "3.10", "3.11"]
3434
concurrency:
3535
# https://github.community/t/concurrecy-not-work-for-push/183068/7
3636
group: ${{ github.event_name == 'push' && github.run_number || github.ref }}-${{matrix.python-version}}-sdist
@@ -42,7 +42,7 @@ jobs:
4242
fetch-depth: 0
4343

4444
- name: Set up Python
45-
uses: actions/setup-python@v3
45+
uses: actions/setup-python@v4
4646
with:
4747
python-version: ${{ matrix.python-version }}
4848

@@ -86,6 +86,8 @@ jobs:
8686
pip install numpy==1.20.3 ;;
8787
3.10)
8888
pip install numpy==1.21.2 ;;
89+
3.11)
90+
pip install numpy==1.23.2 ;;
8991
esac
9092
9193
- name: Import pandas

0 commit comments

Comments
Β (0)