-
-
Notifications
You must be signed in to change notification settings - Fork 18.5k
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
Changes from 4 commits
Commits
Show all changes
7 commits
Select commit
Hold shift + click to select a range
3000c5d
CI: add py38 slow build #35160
fangchenli f8189d5
CI: move py37 to azure
fangchenli 7a3c8ed
Merge remote-tracking branch 'upstream/master' into py38-slow-travis
fangchenli 035839a
CI: combine py37-locale, move py38 to azure
fangchenli d8d0400
Merge remote-tracking branch 'upstream/master' into py38-slow-travis
fangchenli a15624b
Merge remote-tracking branch 'upstream/master' into py38-slow-travis
fangchenli 16fce18
Merge remote-tracking branch 'upstream/master' into py38-slow-travis
fangchenli File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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 hidden or 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 |
---|---|---|
|
@@ -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
There was a problem hiding this comment. Choose a reason for hiding this commentThe 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" | ||
|
This file was deleted.
Oops, something went wrong.
This file contains hidden or 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 hidden or 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 hidden or 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 hidden or 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 |
---|---|---|
|
@@ -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 | ||
|
@@ -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
There was a problem hiding this comment. Choose a reason for hiding this commentThe 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 |
This file contains hidden or 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
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
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.