Skip to content

CI: add py38 slow build #35160 #36626

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 7 commits into from
Oct 7, 2020
Merged
Show file tree
Hide file tree
Changes from 4 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,10 +41,10 @@ matrix:
- JOB="3.9-dev" PATTERN="(not slow and not network and not clipboard)"

- env:
- JOB="3.8" ENV_FILE="ci/deps/travis-38.yaml" PATTERN="(not slow and not network and not clipboard)"

- env:
- JOB="3.7" ENV_FILE="ci/deps/travis-37.yaml" PATTERN="(not slow and not network and not clipboard)"
Comment on lines 43 to -47
Copy link
Member Author

@fangchenli fangchenli Oct 3, 2020

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Those two are not using any travis services.

- JOB="3.8, slow" ENV_FILE="ci/deps/travis-38-slow.yaml" PATTERN="slow" SQL="1"
services:
- mysql
- postgresql

- env:
- JOB="3.7, locale" ENV_FILE="ci/deps/travis-37-locale.yaml" PATTERN="((not slow and not network and not clipboard) or (single and db))" LOCALE_OVERRIDE="zh_CN.UTF-8" SQL="1"
Expand Down
32 changes: 14 additions & 18 deletions ci/azure/posix.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,39 +20,35 @@ jobs:
CONDA_PY: "37"
PATTERN: "not slow and not network and not clipboard"

py37:
ENV_FILE: ci/deps/azure-37.yaml
CONDA_PY: "37"
PATTERN: "not slow and not network and not clipboard"

py37_locale_slow:
ENV_FILE: ci/deps/azure-37-locale_slow.yaml
CONDA_PY: "37"
PATTERN: "slow"
# pandas does not use the language (zh_CN), but should support different encodings (utf8)
# we should test with encodings different than utf8, but doesn't seem like Ubuntu supports any
LANG: "zh_CN.utf8"
LC_ALL: "zh_CN.utf8"
EXTRA_APT: "language-pack-zh-hans"
LANG: "it_IT.utf8"
LC_ALL: "it_IT.utf8"
EXTRA_APT: "language-pack-it xsel"

py37_slow:
ENV_FILE: ci/deps/azure-37-slow.yaml
CONDA_PY: "37"
PATTERN: "slow"

py37_locale:
ENV_FILE: ci/deps/azure-37-locale.yaml
CONDA_PY: "37"
PATTERN: "not slow and not network"
LANG: "it_IT.utf8"
LC_ALL: "it_IT.utf8"
EXTRA_APT: "language-pack-it xsel"

# py37_32bit:
# ENV_FILE: ci/deps/azure-37-32bit.yaml
# CONDA_PY: "37"
# PATTERN: "not slow and not network and not clipboard"
# BITS32: "yes"
Comment on lines -46 to -50
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Conda doesn't have 32bit build anymore.

py38:
ENV_FILE: ci/deps/azure-38.yaml
CONDA_PY: "38"
PATTERN: "not slow and not network and not clipboard"

py38_locale:
ENV_FILE: ci/deps/azure-38-locale.yaml
CONDA_PY: "38"
PATTERN: "not slow and not network"
# pandas does not use the language (zh_CN), but should support different encodings (utf8)
# we should test with encodings different than utf8, but doesn't seem like Ubuntu supports any
LANG: "zh_CN.utf8"
LC_ALL: "zh_CN.utf8"
EXTRA_APT: "language-pack-zh-hans xsel"
Expand Down
26 changes: 0 additions & 26 deletions ci/deps/azure-37-32bit.yaml

This file was deleted.

1 change: 1 addition & 0 deletions ci/deps/azure-37-slow.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ dependencies:
- pytest>=5.0.1
- pytest-xdist>=1.21
- hypothesis>=3.58.0
- pytest-azurepipelines

# pandas dependencies
- beautifulsoup4
Expand Down
1 change: 1 addition & 0 deletions ci/deps/travis-37.yaml → ci/deps/azure-37.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ dependencies:
- pytest>=5.0.1
- pytest-xdist>=1.21
- hypothesis>=3.58.0
- pytest-azurepipelines

# pandas dependencies
- botocore>=1.11
Expand Down
2 changes: 1 addition & 1 deletion ci/deps/travis-38.yaml → ci/deps/azure-38.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,11 +10,11 @@ dependencies:
- pytest>=5.0.1
- pytest-xdist>=1.21
- hypothesis>=3.58.0
- pytest-azurepipelines

# pandas dependencies
- numpy
- python-dateutil
- nomkl
- pytz
- pip
- tabulate==0.8.3
22 changes: 14 additions & 8 deletions ci/deps/travis-37-locale.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,12 @@ dependencies:
- pytest-xdist>=1.21
- hypothesis>=3.58.0

# pandas dependencies
# required
- numpy
- python-dateutil
- pytz

# optional
- beautifulsoup4
- blosc=1.15.0
- python-blosc
Expand All @@ -20,22 +25,23 @@ dependencies:
- ipython
- jinja2
- lxml=4.3.0
- matplotlib=3.0.*
- matplotlib
- nomkl
- numexpr
- numpy
- openpyxl
- pandas-gbq
- google-cloud-bigquery>=1.27.2 # GH 36436
- pyarrow>=0.17
- psycopg2=2.7
- pymysql=0.7.11
- pytables>=3.5.1
- python-dateutil
- pytz
- scipy
- sqlalchemy=1.3.0
- xarray=0.12.0
- xlrd
- xlsxwriter
- xlwt
- moto
- flask
Comment on lines +41 to +42
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Those two were in the auzre-37-locale build.


# sql
- psycopg2=2.7
- pymysql=0.7.11
- sqlalchemy=1.3.0
22 changes: 11 additions & 11 deletions ci/deps/azure-37-locale.yaml → ci/deps/travis-38-slow.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,35 +3,35 @@ channels:
- defaults
- conda-forge
dependencies:
- python=3.7.*
- python=3.8.*

# tools
- cython>=0.29.21
- pytest>=5.0.1
- pytest-xdist>=1.21
- pytest-asyncio
- hypothesis>=3.58.0
- pytest-azurepipelines

# pandas dependencies
- beautifulsoup4
- fsspec>=0.7.4
- html5lib
- ipython
- jinja2
- lxml
- matplotlib>=3.3.0
- moto
- flask
- nomkl
- matplotlib
- numexpr
- numpy=1.16.*
- numpy
- openpyxl
- patsy
- psycopg2
- pymysql
- pytables
- python-dateutil
- pytz
- s3fs>=0.4.0
- moto>=1.3.14
- scipy
- xarray
- sqlalchemy
- xlrd
- xlsxwriter
- xlwt
- moto
- flask