Skip to content

DEPS: Upgrade Deps for Python 3.10 #43729

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 41 commits into from
Oct 13, 2021
Merged
Show file tree
Hide file tree
Changes from 5 commits
Commits
Show all changes
41 commits
Select commit Hold shift + click to select a range
f22feed
Update pyproject.toml
lithomas1 Sep 23, 2021
4d5ab7f
Update setup.py
lithomas1 Sep 23, 2021
2cf1f0b
Update pyproject.toml
lithomas1 Sep 24, 2021
fc4329b
Update pyproject.toml
lithomas1 Sep 24, 2021
0360bae
Update setup.cfg
lithomas1 Sep 24, 2021
98be5bd
Update pyproject.toml
lithomas1 Sep 24, 2021
4f406e5
Update actions-38-db-min.yaml
lithomas1 Sep 24, 2021
c5d3021
Update actions-38-minimum_versions.yaml
lithomas1 Sep 24, 2021
1b043b6
Update actions-38-locale.yaml
lithomas1 Sep 24, 2021
1ec533f
Update actions-38-db.yaml
lithomas1 Sep 24, 2021
5764d02
Update actions-38-slow.yaml
lithomas1 Sep 24, 2021
a68c546
Update actions-38-locale_slow.yaml
lithomas1 Sep 24, 2021
7d3dd4c
Update actions-38.yaml
lithomas1 Sep 24, 2021
e1745d6
Update actions-39-slow.yaml
lithomas1 Sep 24, 2021
94ea941
Update actions-39-numpydev.yaml
lithomas1 Sep 24, 2021
9c12e9c
Update actions-39.yaml
lithomas1 Sep 24, 2021
1b686d5
Update azure-macos-38.yaml
lithomas1 Sep 24, 2021
2304615
Update azure-windows-38.yaml
lithomas1 Sep 24, 2021
5daaf27
Update azure-windows-39.yaml
lithomas1 Sep 24, 2021
435e9b1
Update circle-38-arm64.yaml
lithomas1 Sep 24, 2021
79819ca
Update action.yml
lithomas1 Sep 25, 2021
956a80b
Merge branch 'pandas-dev:master' into python310-deps-update
lithomas1 Sep 25, 2021
9533da5
Update setup.cfg
lithomas1 Sep 30, 2021
692ca3a
Update sdist.yml
lithomas1 Sep 30, 2021
7cd2152
Update sdist.yml
lithomas1 Sep 30, 2021
43316c3
Update sdist.yml
lithomas1 Sep 30, 2021
6288e9e
Update sdist.yml
lithomas1 Sep 30, 2021
a8fcee5
Update v1.4.0.rst
lithomas1 Oct 5, 2021
af883e5
typo
lithomas1 Oct 5, 2021
5c30ced
Update sdist.yml
lithomas1 Oct 5, 2021
cbcee65
Update sdist.yml
lithomas1 Oct 6, 2021
ccb3b86
Merge branch 'pandas-dev:master' into python310-deps-update
lithomas1 Oct 6, 2021
1d5a4b7
Merge branch 'pandas-dev:master' into python310-deps-update
lithomas1 Oct 8, 2021
2f9f466
Update sdist.yml
lithomas1 Oct 9, 2021
33178c4
Update sdist.yml
lithomas1 Oct 11, 2021
58f2d36
Update sdist.yml
lithomas1 Oct 11, 2021
0fb3755
Merge branch 'python310-deps-update' of github.com:lithomas1/pandas i…
lithomas1 Oct 11, 2021
6dcafea
Update sdist.yml
lithomas1 Oct 11, 2021
3abc5a6
Merge branch 'pandas-dev:master' into python310-deps-update
lithomas1 Oct 11, 2021
8cf70dd
Update setup.cfg
lithomas1 Oct 12, 2021
542c5de
move whatsnew
lithomas1 Oct 13, 2021
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
17 changes: 12 additions & 5 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,18 +4,25 @@
requires = [
"setuptools>=51.0.0",
"wheel",
"Cython>=0.29.21,<3", # Note: sync with setup.py
"Cython>=0.29.24,<3", # Note: sync with setup.py
# Numpy requirements for different OS/architectures
# Copied from https://github.com/scipy/scipy/blob/master/pyproject.toml (which is also licensed under BSD)
# Adapted from https://github.com/scipy/scipy/blob/master/pyproject.toml (which is also licensed under BSD)
"numpy==1.17.3; python_version=='3.7' and (platform_machine!='arm64' or platform_system!='Darwin') and platform_machine!='aarch64'",
"numpy==1.18.3; python_version=='3.8' and (platform_machine!='arm64' or platform_system!='Darwin') and platform_machine!='aarch64'",
"numpy==1.19.3; python_version>='3.9' and (platform_machine!='arm64' or platform_system!='Darwin')",
"numpy==1.19.3; python_version=='3.9' and (platform_machine!='arm64' or platform_system!='Darwin')",
# Aarch64(Python 3.9 requirements are the same as AMD64)
"numpy==1.19.2; python_version=='3.7' and platform_machine=='aarch64'",
"numpy==1.19.2; python_version=='3.8' and platform_machine=='aarch64'",
# Darwin Arm64
"numpy>=1.20.0; python_version=='3.8' and platform_machine=='arm64' and platform_system=='Darwin'",
"numpy>=1.20.0; python_version=='3.9' and platform_machine=='arm64' and platform_system=='Darwin'"
"numpy==1.20.0; python_version=='3.8' and platform_machine=='arm64' and platform_system=='Darwin'",
"numpy==1.20.0; python_version=='3.9' and platform_machine=='arm64' and platform_system=='Darwin'",
# For Python versions which aren't yet officially supported,
# we specify an unpinned NumPy which allows source distributions
# to be used and allows wheels to be used as soon as they
# become available.
"numpy==1.21.2; python_version=='3.10'",
"numpy; python_version>'3.10'",
"numpy; python_version>='3.8' and platform_python_implementation=='PyPy'",
]
# uncomment to enable pep517 after versioneer problem is fixed.
# https://github.com/python-versioneer/python-versioneer/issues/193
Expand Down
1 change: 1 addition & 0 deletions setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@ classifiers =
Programming Language :: Python :: 3 :: Only
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3.10
Topic :: Scientific/Engineering
project_urls =
Bug Tracker = https://github.com/pandas-dev/pandas/issues
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ def is_platform_mac():
return sys.platform == "darwin"


min_cython_ver = "0.29.21" # note: sync with pyproject.toml
min_cython_ver = "0.29.24" # note: sync with pyproject.toml

try:
from Cython import (
Expand Down