-
Notifications
You must be signed in to change notification settings - Fork 175
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Add twine check to CI, attempt fix in README (#379) * Tests for plotting functions and methods, other increases in test coverage (#384) * Vectorization2 (#378) * Fix azure on windows (#388) * Allow more general input to ripser when metric='precomputed', improve/refactor check_point_clouds and add tests (#386) * Add citing entry to README.rst and doc/faq.rst (#389) * Fix markdown subsection formatting (#390) * Prepare release 0.2.1 (#391) Co-authored-by: Anibal M. Medina-Mardones <ammedmar@gmail.com> Co-authored-by: REDS institute <reds-heig@users.noreply.github.com> Co-authored-by: Guillaume Tauzin <guillaumetauzin.ut@gmail.com>
- Loading branch information
1 parent
72e31c2
commit 08619b0
Showing
31 changed files
with
973 additions
and
393 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
#!/usr/bin/env python | ||
|
||
import os | ||
from pathlib import Path | ||
import urllib.request | ||
import shutil | ||
import zipfile | ||
|
||
|
||
url = "https://dl.bintray.com/boostorg/release/1.72.0/source/boost_1_72_0.zip" | ||
boost_folder = r"C:\local" | ||
|
||
Path(boost_folder).mkdir(parents=True, exist_ok=True) | ||
zip_file = os.path.join(boost_folder, "1_72_0.zip") | ||
|
||
with urllib.request.urlopen(url) as response, \ | ||
open(zip_file, 'wb') as out_file: | ||
shutil.copyfileobj(response, out_file) | ||
|
||
with zipfile.ZipFile(zip_file, 'r') as zip_ref: | ||
zip_ref.extractall(boost_folder) | ||
|
||
os.remove(zip_file) |
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,14 +1,12 @@ | ||
[run] | ||
omit = | ||
*/gtda/externals/* | ||
**/setup.py | ||
|
||
*/gtda/compose/* | ||
*/gtda/datasets/* | ||
*/gtda/images/* | ||
*/gtda/neural_network/* | ||
*/gtda/model_selection/* | ||
*tests* | ||
|
||
**/gtda/utils/intervals.py | ||
**/gtda/utils/_docs.py | ||
**/base.py | ||
**/pipeline.py | ||
**/_version.py | ||
**/setup.py | ||
**/_version.py |
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
Oops, something went wrong.