Skip to content

Commit 005ea25

Browse files
committed
update docs to mention 3.11 support
1 parent 4b98e0b commit 005ea25

File tree

4 files changed

+6
-4
lines changed

4 files changed

+6
-4
lines changed

.github/workflows/wheels.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ jobs:
5252
- [windows-2019, win_amd64]
5353
- [windows-2019, win32]
5454
# TODO: support PyPy?
55-
python: [["cp38", "3.8"], ["cp39", "3.9"], ["cp310", "3.10"], ["cp311", "3.11-dev"]]# "pp38", "pp39"]
55+
python: [["cp38", "3.8"], ["cp39", "3.9"], ["cp310", "3.10"], ["cp311", "3.11"]]# "pp38", "pp39"]
5656
env:
5757
IS_PUSH: ${{ github.event_name == 'push' && startsWith(github.ref, 'refs/tags/v') }}
5858
IS_SCHEDULE_DISPATCH: ${{ github.event_name == 'schedule' || github.event_name == 'workflow_dispatch' }}
@@ -73,7 +73,7 @@ jobs:
7373
CIBW_BUILD: ${{ matrix.python[0] }}-${{ matrix.buildplat[1] }}
7474

7575
# Used to test the built wheels
76-
- uses: actions/setup-python@v3
76+
- uses: actions/setup-python@v4
7777
with:
7878
python-version: ${{ matrix.python[1] }}
7979

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.2
3739
pytz>=2020.1
3840
python_requires = >=3.8

0 commit comments

Comments
 (0)