-
Notifications
You must be signed in to change notification settings - Fork 19
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix travis based on new pysap flow and add support to python3.8 (#107)
* Remove unwanted travis installs and add python 3.8 * Version bump and point to right repositories * Adon bump for pypi release * Fix Commit for travis pytest runner * Update codes for circleci * Move clock() call to perf_counter() * Adding extra to queue just in case, and also keeping rtol=1e-5 * Update config.yml * Remove upgrade option as we not moved to latest * Adding caching for faster build * Remove support for n_jobs for ISAP wavelets * Fix PEP8 errors * Minute fix for #102 * add upgrade as clearing cache will take long Co-authored-by: chaithyagr <[email protected]>
- Loading branch information
1 parent
3bccf77
commit b79a5da
Showing
9 changed files
with
39 additions
and
56 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
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
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 |
---|---|---|
|
@@ -30,7 +30,7 @@ | |
Philippe Ciuciu <[email protected]> | ||
""" | ||
# Write setup | ||
setup_requires = ["numpy", "cython", "pytest-runner", "scikit-image"] | ||
setup_requires = ["numpy>=1.16.4", "cython>=0.27.3", "pytest-runner"] | ||
|
||
pip_main(['install'] + setup_requires) | ||
|
||
|
@@ -42,17 +42,18 @@ | |
classifiers="CLASSIFIERS", | ||
author=AUTHOR, | ||
author_email="XXX", | ||
version="0.1.1", | ||
version="0.2.2", | ||
url="https://github.com/CEA-COSMIC/pysap-mri", | ||
packages=find_packages(), | ||
setup_requires=setup_requires, | ||
install_requires=["scikit-learn", | ||
"progressbar2", | ||
"joblib", | ||
"scipy<=1.3.3", | ||
"psutil", | ||
"pynfft@git+https://github.com/ghisvail/pyNFFT@master"], | ||
dependency_links=['https://github.com/ghisvail/pyNFFT/tarball/master#egg=pynfft-1.3.0'], | ||
tests_require=['pytest>=5.0.1', 'pytest-cov>=2.7.1', 'pytest-pep8'], | ||
install_requires=[ | ||
"scikit-learn>=0.19.1", | ||
"progressbar2>=3.34.3", | ||
"joblib", | ||
"scipy>=1.3.0", | ||
"pynfft2>=1.3.3", | ||
"scikit-image", | ||
], | ||
tests_require=['pytest>=5.0.1', 'pytest-cov>=2.7.1', 'pytest-pep8', 'pytest-runner'], | ||
platforms="OS Independent" | ||
) |