forked from pandas-dev/pandas
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge remote-tracking branch 'repo_org/master' into Warning_prefix_pa…
…ndas * repo_org/master: (23 commits) DOC: Add docstring validations for "See Also" section (pandas-dev#23143) TST: Fix test assertion (pandas-dev#23357) BUG: Handle Period in combine (pandas-dev#23350) REF: SparseArray imports (pandas-dev#23329) CI: Migrate some CircleCI jobs to Azure (pandas-dev#22992) DOC: update the is_month_start/is_month_end docstring (pandas-dev#23051) Partialy fix issue pandas-dev#23334 - isort pandas/core/groupby directory (pandas-dev#23341) TST: Add base test for extensionarray setitem pandas-dev#23300 (pandas-dev#23304) API: Add sparse Acessor (pandas-dev#23183) PERF: speed up CategoricalIndex.get_loc (pandas-dev#23235) fix and test incorrect case in delta_to_nanoseconds (pandas-dev#23302) BUG: Handle Datetimelike data in DataFrame.combine (pandas-dev#23317) TST: re-enable gbq tests (pandas-dev#23303) Switched references of App veyor to azure pipelines in the contributing CI section (pandas-dev#23311) isort imports-io (pandas-dev#23332) DOC: Added a Multi Index example for the Series.sum method (pandas-dev#23279) REF: Make PeriodArray an ExtensionArray (pandas-dev#22862) DOC: Added Examples for Series max (pandas-dev#23298) API/ENH: tz_localize handling of nonexistent times: rename keyword + add shift option (pandas-dev#22644) BUG: Let MultiIndex.set_levels accept any iterable (pandas-dev#23273) (pandas-dev#23291) ...
- Loading branch information
Showing
129 changed files
with
3,371 additions
and
1,303 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
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
File renamed without changes.
File renamed without changes.
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,35 @@ | ||
name: pandas | ||
channels: | ||
- defaults | ||
- conda-forge | ||
dependencies: | ||
- beautifulsoup4 | ||
- cython>=0.28.2 | ||
- html5lib | ||
- ipython | ||
- jinja2 | ||
- lxml | ||
- matplotlib | ||
- nomkl | ||
- numexpr | ||
- numpy | ||
- openpyxl=2.5.5 | ||
- psycopg2 | ||
- pymysql | ||
- pytables | ||
- python-dateutil | ||
- python=3.6* | ||
- pytz | ||
- s3fs | ||
- scipy | ||
- sqlalchemy | ||
- xarray | ||
- xlrd | ||
- xlsxwriter | ||
- xlwt | ||
# universal | ||
- pytest | ||
- pytest-xdist | ||
- moto | ||
- pip: | ||
- hypothesis>=3.58.0 |
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,56 @@ | ||
parameters: | ||
name: '' | ||
vmImage: '' | ||
|
||
jobs: | ||
- job: ${{ parameters.name }} | ||
pool: | ||
vmImage: ${{ parameters.vmImage }} | ||
strategy: | ||
maxParallel: 11 | ||
matrix: | ||
py27_np_19: | ||
ENV_FILE: ci/azure-27-compat.yaml | ||
CONDA_PY: "27" | ||
CONDA_ENV: pandas | ||
TEST_ARGS: "--skip-slow --skip-network" | ||
|
||
py36_locale: | ||
ENV_FILE: ci/azure-37-locale.yaml | ||
CONDA_PY: "37" | ||
CONDA_ENV: pandas | ||
TEST_ARGS: "--skip-slow --skip-network" | ||
LOCALE_OVERRIDE: "zh_CN.UTF-8" | ||
|
||
py36_locale_slow: | ||
ENV_FILE: ci/azure-36-locale_slow.yaml | ||
CONDA_PY: "36" | ||
CONDA_ENV: pandas | ||
TEST_ARGS: "--only-slow --skip-network" | ||
|
||
steps: | ||
- script: | | ||
if [ "$(uname)" == "Linux" ]; then sudo apt-get install -y libc6-dev-i386; fi | ||
echo "Installing Miniconda"{ | ||
ci/incremental/install_miniconda.sh | ||
export PATH=$HOME/miniconda3/bin:$PATH | ||
echo "Setting up Conda environment" | ||
ci/incremental/setup_conda_environment.sh | ||
displayName: 'Before Install' | ||
- script: | | ||
export PATH=$HOME/miniconda3/bin:$PATH | ||
ci/incremental/build.sh | ||
displayName: 'Build' | ||
- script: | | ||
export PATH=$HOME/miniconda3/bin:$PATH | ||
ci/script_single.sh | ||
ci/script_multi.sh | ||
echo "[Test done]" | ||
displayName: 'Test' | ||
- script: | | ||
export PATH=$HOME/miniconda3/bin:$PATH | ||
source activate pandas && pushd /tmp && python -c "import pandas; pandas.show_versions();" && popd | ||
- task: PublishTestResults@2 | ||
inputs: | ||
testResultsFiles: 'test-data-*.xml' | ||
testRunTitle: 'Linux' |
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 was deleted.
Oops, something went wrong.
File renamed without changes.
File renamed without changes.
File renamed without changes.
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
Oops, something went wrong.