-
-
Notifications
You must be signed in to change notification settings - Fork 18.5k
BLD: Add pyproject.toml #28374
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
BLD: Add pyproject.toml #28374
Changes from all commits
Commits
Show all changes
19 commits
Select commit
Hold shift + click to select a range
55294ca
BLD: Stop shipping cythonized files in sdist
TomAugspurger eaa0b82
update install in ci
TomAugspurger 39712b8
Merge remote-tracking branch 'upstream/master' into sdist-cython
TomAugspurger 439da48
revert setup.py
TomAugspurger f8b90cf
add to manifest
TomAugspurger 13d9949
update docs
TomAugspurger e7c0732
note on aix
TomAugspurger f842f48
typo
TomAugspurger de5da03
cmd
TomAugspurger 8d326e5
fixups
TomAugspurger e2a6e3c
revert install changes
TomAugspurger bb59373
update pip
TomAugspurger 0278eb3
Merge remote-tracking branch 'upstream/master' into sdist-cython
TomAugspurger debbbf8
remove old workaround
TomAugspurger bedbc51
revert manifest
TomAugspurger 19301ea
Merge branch 'sdist-cython' of https://github.com/TomAugspurger/panda…
TomAugspurger 8b50fe1
note
TomAugspurger 651ef58
Merge remote-tracking branch 'upstream/master' into sdist-cython
TomAugspurger 2aa2e9c
remove pep517
TomAugspurger File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -57,6 +57,7 @@ dist | |
# wheel files | ||
*.whl | ||
**/wheelhouse/* | ||
pip-wheel-metadata | ||
# coverage | ||
.coverage | ||
coverage.xml | ||
|
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,9 @@ | ||
@rem https://github.com/numba/numba/blob/master/buildscripts/incremental/build.cmd | ||
|
||
@rem Build numba extensions without silencing compile errors | ||
python setup.py build_ext -q --inplace | ||
@rem Build extensions | ||
python setup.py build_ext -q -i | ||
|
||
@rem Install pandas locally | ||
python -m pip install -e . | ||
@rem Install pandas | ||
python -m pip install --no-build-isolation -e . | ||
|
||
if %errorlevel% neq 0 exit /b %errorlevel% |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
[build-system] | ||
# Minimum requirements for the build system to execute. | ||
# See https://github.com/scipy/scipy/pull/10431 for the AIX issue. | ||
requires = [ | ||
"setuptools", | ||
"wheel", | ||
"Cython>=0.29.13", # Note: sync with setup.py | ||
"numpy==1.13.3; python_version=='3.5' and platform_system!='AIX'", | ||
TomAugspurger marked this conversation as resolved.
Show resolved
Hide resolved
|
||
"numpy==1.13.3; python_version=='3.6' and platform_system!='AIX'", | ||
"numpy==1.14.5; python_version>='3.7' and platform_system!='AIX'", | ||
"numpy==1.16.0; python_version=='3.5' and platform_system=='AIX'", | ||
"numpy==1.16.0; python_version=='3.6' and platform_system=='AIX'", | ||
"numpy==1.16.0; python_version>='3.7' and platform_system=='AIX'", | ||
] |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.