-
-
Notifications
You must be signed in to change notification settings - Fork 18k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Showing
10 changed files
with
46 additions
and
20 deletions.
There are no files selected for viewing
This file contains 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 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 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 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 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 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 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 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 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'", | ||
"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 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