-
-
Notifications
You must be signed in to change notification settings - Fork 18.4k
CI: Setup 3.9 Travis Build #33505
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
CI: Setup 3.9 Travis Build #33505
Changes from 11 commits
Commits
Show all changes
16 commits
Select commit
Hold shift + click to select a range
93119ec
Python 3.9 build
alimcmaster1 e3974d6
Python 3.9 build
alimcmaster1 5bc23f9
Python 3.9 build
alimcmaster1 b580039
Python 3.9 build
alimcmaster1 26e2642
Update build39.sh
alimcmaster1 75ef91a
Update .travis.yml
alimcmaster1 6281ceb
Merge remote-tracking branch 'upstream/master' into setup39
alimcmaster1 629b147
Merge remote-tracking branch 'origin/setup39' into setup39
alimcmaster1 7ff552f
Python 3.9 tests
alimcmaster1 6dc7322
Dummy commit
alimcmaster1 aaa835f
Use numpy master manylinux wheel
alimcmaster1 b7b74c5
use scipy nightly wheels
alimcmaster1 21cce3f
Build numpy from source
alimcmaster1 e3ad3fd
Merge remote-tracking branch 'upstream/master' into setup39
alimcmaster1 ab03303
Merge remote-tracking branch 'upstream/master' into setup39
alimcmaster1 9bb67ae
Merge remote-tracking branch 'upstream/master' into setup39
alimcmaster1 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 |
---|---|---|
@@ -0,0 +1,16 @@ | ||
#!/bin/bash -e | ||
# Special build for python3.9 until numpy puts its own wheels up | ||
|
||
sudo apt-get install build-essential gcc xvfb | ||
pip install --no-deps -U pip wheel setuptools | ||
pip install python-dateutil pytz pytest pytest-xdist hypothesis | ||
pip install cython --pre # https://github.com/cython/cython/issues/3395 | ||
|
||
pip install --pre -f https://7933911d6844c6c53a7d-47bd50c35cd79bd838daf386af554a83.ssl.cf2.rackcdn.com numpy | ||
|
||
python setup.py build_ext -inplace | ||
python -m pip install --no-build-isolation -e . | ||
|
||
python -c "import sys; print(sys.version_info)" | ||
python -c "import pandas as pd" | ||
python -c "import hypothesis" |
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
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.
this might not be the right address iirc this changed
maybe have to look on the numpy issue list
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.
Its the same address we use in the numpy dev build? - https://github.com/pandas-dev/pandas/blob/master/ci/deps/azure-37-numpydev.yaml#L19
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.
these might be older:
https://anaconda.org/scipy-wheels-nightly/numpy/files
i think is the new location (includes scipy as well)
let’s update
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.
Ahh nice - thanks wasn't aware! Will update the numpy dev build too in a separate PR.
thanks!