Skip to content

Commit aebba0d

Browse files
meeseeksmachineTomAugspurger
authored andcommitted
Backport PR #28982 on branch 0.25.x (Document 3.8 compatibility) (#28999)
* Backport PR #28982: Document 3.8 compatibility * CI failing Linux py36_32bit (#28830) (cherry picked from commit 558f754)
1 parent 505b1a7 commit aebba0d

File tree

4 files changed

+8
-2
lines changed

4 files changed

+8
-2
lines changed

ci/deps/azure-36-32bit.yaml

+2-1
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ channels:
33
- defaults
44
- conda-forge
55
dependencies:
6+
- attrs=19.1.0
67
- gcc_linux-32
78
- gcc_linux-32
89
- gxx_linux-32
@@ -11,7 +12,7 @@ dependencies:
1112
- python=3.6.*
1213
- pytz=2017.2
1314
# universal
14-
- pytest>=4.0.2,<5.0.0
15+
- pytest
1516
- pytest-xdist
1617
- pytest-mock
1718
- pytest-azurepipelines

doc/source/install.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ Instructions for installing from source,
1818
Python version support
1919
----------------------
2020

21-
Officially Python 3.5.3 and above, 3.6, and 3.7.
21+
Officially Python 3.5.3 and above, 3.6, 3.7, and 3.8.
2222

2323
Installing pandas
2424
-----------------

doc/source/whatsnew/v0.25.2.rst

+4
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,10 @@ What's new in 0.25.2 (October XX, 2019)
66
These are the changes in pandas 0.25.2. See :ref:`release` for a full changelog
77
including other versions of pandas.
88

9+
.. note::
10+
11+
Pandas 0.25.2 adds compatibility for Python 3.8 (:issue:`28147`).
12+
913
.. _whatsnew_0252.bug_fixes:
1014

1115
Bug fixes

setup.py

+1
Original file line numberDiff line numberDiff line change
@@ -230,6 +230,7 @@ def build_extensions(self):
230230
"Programming Language :: Python :: 3.5",
231231
"Programming Language :: Python :: 3.6",
232232
"Programming Language :: Python :: 3.7",
233+
"Programming Language :: Python :: 3.8",
233234
"Programming Language :: Cython",
234235
"Topic :: Scientific/Engineering",
235236
]

0 commit comments

Comments
 (0)