-
-
Notifications
You must be signed in to change notification settings - Fork 18.3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
258 changed files
with
5,308 additions
and
11,190 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -15,3 +15,4 @@ repos: | |
hooks: | ||
- id: isort | ||
language: python_venv | ||
exclude: ^pandas/__init__\.py$|^pandas/core/api\.py$ |
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
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 |
---|---|---|
|
@@ -104,7 +104,7 @@ jobs: | |
displayName: 'Running benchmarks' | ||
condition: true | ||
- job: 'Docs' | ||
- job: 'Web_and_Docs' | ||
pool: | ||
vmImage: ubuntu-16.04 | ||
timeoutInMinutes: 90 | ||
|
@@ -119,6 +119,11 @@ jobs: | |
ci/setup_env.sh | ||
displayName: 'Setup environment and build pandas' | ||
- script: | | ||
source activate pandas-dev | ||
python web/pandas_web.py web/pandas --target-path=web/build | ||
displayName: 'Build website' | ||
- script: | | ||
source activate pandas-dev | ||
# Next we should simply have `doc/make.py --warnings-are-errors`, everything else is required because the ipython directive doesn't fail the build on errors (https://github.com/ipython/ipython/issues/11547) | ||
|
@@ -128,15 +133,21 @@ jobs: | |
displayName: 'Build documentation' | ||
- script: | | ||
cd doc/build/html | ||
mkdir -p to_deploy/docs | ||
cp -r web/build/* to_deploy/ | ||
cp -r doc/build/html/* to_deploy/docs/ | ||
displayName: 'Merge website and docs' | ||
- script: | | ||
cd to_deploy | ||
git init | ||
touch .nojekyll | ||
echo "dev.pandas.io" > CNAME | ||
printf "User-agent: *\nDisallow: /" > robots.txt | ||
git add --all . | ||
git config user.email "[email protected]" | ||
git config user.name "pandas-docs-bot" | ||
git commit -m "pandas documentation in master" | ||
git config user.name "pandas-bot" | ||
git commit -m "pandas web and documentation in master" | ||
displayName: 'Create git repo for docs build' | ||
condition : | | ||
and(not(eq(variables['Build.Reason'], 'PullRequest')), | ||
|
@@ -160,10 +171,10 @@ jobs: | |
eq(variables['Build.SourceBranch'], 'refs/heads/master')) | ||
- script: | | ||
cd doc/build/html | ||
cd to_deploy | ||
git remote add origin [email protected]:pandas-dev/pandas-dev.github.io.git | ||
git push -f origin master | ||
displayName: 'Publish docs to GitHub pages' | ||
displayName: 'Publish web and docs to GitHub pages' | ||
condition : | | ||
and(not(eq(variables['Build.Reason'], 'PullRequest')), | ||
eq(variables['Build.SourceBranch'], 'refs/heads/master')) |
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
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
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
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% |
Oops, something went wrong.