Permalink
Show file tree
Hide file tree
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Python 3.7 macOS Support (#2079)
* For macOS and Linux, update all necessary dependencies, other than mxnet. * Install MXNet 1.5.0 only for Python 3.7 on AVX2 supported macOS. * Prevent stackoverflow (inifinte recursion) for TC image resize. * Updated panda dtypes. * Don't clobber symlinks in deps/local/include. * Object Detection use new version of MXNet. * Sound Classifier use new version of MXNet. * Update what versions of Python we say we support. * Make clear Python 3.7 is supported on macOS only * Remove unneeded additional depedencies for scenario tests. * Add pyton 3.7 to docker configs. * Add '--docker-python3.7' option to scenario tests. * Make run_cpp_test.py python 3 compatible. * Add logging to error case. * Use ignore_stale_grad and even_split to ignore MXNet warnings surfaced as exceptions. * Minor unit test refactor. * GitLab CI: Add Python 3.7 for macOS. * GitLab CI: commented out another 10.13 jobs. * Fix Travis CI.
- Loading branch information
1 parent
c49db67
commit ad9c748
Showing
21 changed files
with
192 additions
and
110 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +0,0 @@ | ||
beautifulsoup4 | ||
certifi==2015.04.28 | ||
nltk==3.2 | ||
pyscreenshot==0.4 | ||
python-swiftclient | ||
python-keystoneclient | ||
testfixtures==4.10.0 | ||
h5py==2.7.1 | ||
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 |
---|---|---|
@@ -1,26 +1,26 @@ | ||
coremltools==2.1.0 | ||
coremltools==3.0b3 | ||
scipy==1.2.1 | ||
numpy==1.16.4 | ||
cython==0.29.12 | ||
cython==0.29.10 | ||
argparse==1.2.1 | ||
decorator==4.1.2 | ||
mock==2.0.0 | ||
pytest==3.2.5 | ||
pandas==0.22.0 | ||
pillow==5.0.0 | ||
decorator==4.4.0 | ||
mock==3.0.5 | ||
pytest==4.6.3 | ||
pandas==0.24.2 | ||
pillow==6.0.0 | ||
prettytable==0.7.2 | ||
pytz==2016.3 | ||
pytz==2019.1 | ||
resampy==0.2.1 | ||
requests>=2.9.1 | ||
scikit-learn==0.17.1 | ||
six==1.10.0 | ||
statsmodels==0.8.0 | ||
scikit-learn==0.20.3 | ||
six==1.12.0 | ||
statsmodels==0.9.0 | ||
wheel==0.29.0 | ||
mxnet==1.1.0 | ||
mxnet==1.1.0; sys_platform != 'darwin' | ||
UISoup==2.5.7 | ||
pyobjc==4.2.2; sys_platform == 'darwin' | ||
future==0.16.0 | ||
pyOpenSSL | ||
ndg-httpsclient | ||
pyasn1 | ||
hypothesis==3.76.0 | ||
pyobjc==5.2; sys_platform == 'darwin' | ||
future==0.17.1 | ||
pyOpenSSL==19.0.0 | ||
ndg-httpsclient==0.5.1 | ||
pyasn1==0.4.5 | ||
hypothesis==4.24.3 |
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
Oops, something went wrong.