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 Add_ExtensionArra…
…y_tests * repo_org/master: (52 commits) ENH: Allow rename_axis to specify index and columns arguments (pandas-dev#20046) STY: proposed isort settings [ci skip] [skip ci] [ciskip] [skipci] (pandas-dev#23366) MAINT: Remove extraneous test.parquet file CLN: Follow-up comments to pandas-devgh-23392 (pandas-dev#23401) BUG GH23282 calling min on series of NaT returns NaT (pandas-dev#23289) unpin openpyxl (pandas-dev#23361) REF: collect ops dispatch functions in one place, try to de-duplicate SparseDataFrame methods (pandas-dev#23060) CLN: Remove pandas.tools module (pandas-dev#23376) CLN: Remove some dtype methods from API (pandas-dev#23390) CLN: Cleanup toplevel namespace shims (pandas-dev#23386) DOC: fixup whatsnew note for GH21394 (pandas-dev#23355) Fix import format at pandas/tests/extension directory (pandas-dev#23365) DOC: Remove Series.sortlevel from api.rst (pandas-dev#23395) API: Disallow dtypes w/o frequency when casting (pandas-dev#23392) BUG/TST/REF: Datetimelike Arithmetic Methods (pandas-dev#23215) STYLE: lint add np.nan* funcs to cython_table (pandas-dev#22109) Run Isort on tests/util single PR (pandas-dev#23347) BUG: Fix date_range overflow (pandas-dev#23345) Run Isort on tests/arrays single PR (pandas-dev#23346) ...
- Loading branch information
Showing
347 changed files
with
5,393 additions
and
3,795 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.
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 |
---|---|---|
|
@@ -14,7 +14,7 @@ dependencies: | |
- nomkl | ||
- numexpr | ||
- numpy | ||
- openpyxl=2.5.5 | ||
- openpyxl | ||
- psycopg2 | ||
- pymysql | ||
- pytables | ||
|
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 | ||
- 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
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.
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 |
---|---|---|
|
@@ -13,7 +13,7 @@ dependencies: | |
- nomkl | ||
- numexpr | ||
- numpy | ||
- openpyxl=2.5.5 | ||
- openpyxl | ||
- psycopg2 | ||
- pymysql | ||
- pytables | ||
|
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
Oops, something went wrong.