Skip to content

Commit 678c3a7

Browse files
committed
Backport PR #49320: (📚) update docs to mention 3.11 support
1 parent d1b898b commit 678c3a7

File tree

4 files changed

+8
-4
lines changed

4 files changed

+8
-4
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

doc/source/getting_started/install.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ Instructions for installing from source,
2020
Python version support
2121
----------------------
2222

23-
Officially Python 3.8, 3.9 and 3.10.
23+
Officially Python 3.8, 3.9, 3.10 and 3.11.
2424

2525
Installing pandas
2626
-----------------

pyproject.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ requires = [
55
"setuptools>=51.0.0",
66
"wheel",
77
"Cython>=0.29.32,<3", # Note: sync with setup.py, environment.yml and asv.conf.json
8-
"oldest-supported-numpy>=0.10"
8+
"oldest-supported-numpy>=2022.8.16"
99
]
1010
# uncomment to enable pep517 after versioneer problem is fixed.
1111
# https://github.com/python-versioneer/python-versioneer/issues/193

setup.cfg

+2
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@ classifiers =
2222
Programming Language :: Python :: 3.8
2323
Programming Language :: Python :: 3.9
2424
Programming Language :: Python :: 3.10
25+
Programming Language :: Python :: 3.11
2526
Topic :: Scientific/Engineering
2627
project_urls =
2728
Bug Tracker = https://github.com/pandas-dev/pandas/issues
@@ -33,6 +34,7 @@ packages = find:
3334
install_requires =
3435
numpy>=1.20.3; python_version<'3.10'
3536
numpy>=1.21.0; python_version>='3.10'
37+
numpy>=1.23.2; python_version>='3.11'
3638
python-dateutil>=2.8.1
3739
pytz>=2020.1
3840
python_requires = >=3.8

0 commit comments

Comments
 (0)