Skip to content

DEPS: update setuptools min version #42304

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 23 commits into from
Aug 3, 2021
Merged
Show file tree
Hide file tree
Changes from 16 commits
Commits
Show all changes
23 commits
Select commit Hold shift + click to select a range
6af8280
DEPS: update setuptools min version
fangchenli Jun 29, 2021
7bc5a42
update doc
fangchenli Jun 29, 2021
9ac6943
add setuptools to environment.yml
fangchenli Jun 29, 2021
8a12e21
remove setuptools from environment.yml
fangchenli Jun 30, 2021
66af51b
Merge remote-tracking branch 'upstream/master' into fix-setuptools-mi…
fangchenli Jun 30, 2021
49958c8
Merge remote-tracking branch 'upstream/master' into fix-setuptools-mi…
fangchenli Jul 1, 2021
0b812a0
fix doc
fangchenli Jul 1, 2021
73d59fe
Update doc/source/development/contributing_environment.rst
fangchenli Jul 1, 2021
eff688c
Merge remote-tracking branch 'upstream/master' into fix-setuptools-mi…
fangchenli Jul 2, 2021
d2351cd
Merge remote-tracking branch 'origin/fix-setuptools-min-version' into…
fangchenli Jul 2, 2021
bfdeab3
Merge remote-tracking branch 'upstream/master' into fix-setuptools-mi…
fangchenli Jul 2, 2021
fc3919f
Merge remote-tracking branch 'upstream/master' into fix-setuptools-mi…
fangchenli Jul 6, 2021
a390612
Merge remote-tracking branch 'upstream/master' into fix-setuptools-mi…
fangchenli Jul 7, 2021
67ab670
Merge remote-tracking branch 'upstream/master' into fix-setuptools-mi…
fangchenli Jul 8, 2021
efb2fc7
add instruction for upgrading setuptools
fangchenli Jul 8, 2021
4d578be
remove code-block
fangchenli Jul 8, 2021
dee8fc0
Merge remote-tracking branch 'upstream/master' into fix-setuptools-mi…
fangchenli Jul 26, 2021
bd661a5
Merge remote-tracking branch 'upstream/master' into fix-setuptools-mi…
fangchenli Jul 26, 2021
36eb657
Merge remote-tracking branch 'upstream/master' into fix-setuptools-mi…
fangchenli Jul 26, 2021
1d6c1e4
add setuptools to requirements.txt
fangchenli Jul 26, 2021
2aba478
add toml to pre-commit dependency list
fangchenli Jul 26, 2021
37d2c4f
Merge remote-tracking branch 'upstream/master' into fix-setuptools-mi…
fangchenli Jul 26, 2021
fe7b039
Merge remote-tracking branch 'upstream/master' into fix-setuptools-mi…
fangchenli Aug 2, 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
6 changes: 3 additions & 3 deletions doc/source/development/contributing_environment.rst
Original file line number Diff line number Diff line change
Expand Up @@ -189,9 +189,9 @@ Creating a Python environment (pip)
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

If you aren't using conda for your development environment, follow these instructions.
You'll need to have at least the :ref:`minimum Python version <install.version>` that pandas supports. If your Python version
is 3.8.0 (or later), you might need to update your ``setuptools`` to version 42.0.0 (or later)
in your development environment before installing the build dependencies::
You'll need to have at least the :ref:`minimum Python version <install.version>` that pandas supports.
You also need to have ``setuptools`` 51.0.0 or later to build pandas.
In your development environment, use the ``pip`` to upgrade ``setuptools``.

pip install --upgrade setuptools

Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
# Minimum requirements for the build system to execute.
# See https://github.com/scipy/scipy/pull/12940 for the AIX issue.
requires = [
"setuptools>=38.6.0",
"setuptools>=51.0.0",
"wheel",
"Cython>=0.29.21,<3", # Note: sync with setup.py
# Numpy requirements for different OS/architectures
Expand Down