We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1e2cab9 commit 23358e3Copy full SHA for 23358e3
β.github/workflows/sdist.yml
@@ -30,7 +30,7 @@ jobs:
30
strategy:
31
fail-fast: false
32
matrix:
33
- python-version: ["3.8", "3.9", "3.10"]
+ python-version: ["3.8", "3.9", "3.10", "3.11"]
34
concurrency:
35
# https://github.community/t/concurrecy-not-work-for-push/183068/7
36
group: ${{ github.event_name == 'push' && github.run_number || github.ref }}-${{matrix.python-version}}-sdist
@@ -42,7 +42,7 @@ jobs:
42
fetch-depth: 0
43
44
- name: Set up Python
45
- uses: actions/setup-python@v3
+ uses: actions/setup-python@v4
46
with:
47
python-version: ${{ matrix.python-version }}
48
@@ -86,6 +86,8 @@ jobs:
86
pip install numpy==1.20.3 ;;
87
3.10)
88
pip install numpy==1.21.2 ;;
89
+ 3.11)
90
+ pip install numpy==1.23.2 ;;
91
esac
92
93
- name: Import pandas
0 commit comments