forked from TDAmeritrade/stumpy
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Initial commit for adding ray support * Fixed missing import * Fixed typo * Refactored coverage reporting * Force codecov to use coverage.py report instead of generating its own * Specify coverage.xml in PWD * Added verbose flag * Minor change * Added new codecov token * Added temporary break in test converage * Minor change * Changed name of coverage file * Expand coverage to all tests, removed break * Removed comments in workflow * Removed codecov patch/project status * Minor change * Added ability to specify coverage.xml file * Split xml report and displaying report * Updated docstrings to include `ray` example * Fixed flake8 problem * Added ray docstring examples * Fixed typo * Reverted missing docstring * Minor change * Reverted docstring * Minor changes * Added ray.shutdown() * Changed how `step` is calculated to be more precise * Fixed missing paratheses
- Loading branch information
Showing
17 changed files
with
1,200 additions
and
67 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 |
---|---|---|
@@ -0,0 +1,4 @@ | ||
coverage: | ||
status: | ||
project: off | ||
patch: off |
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
File renamed without changes.
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,17 @@ | ||
#!/usr/bin/env python | ||
|
||
import requests | ||
from packaging.version import Version | ||
|
||
classifiers = ( | ||
requests.get("https://pypi.org/pypi/ray/json").json().get("info").get("classifiers") | ||
) | ||
|
||
versions = [] | ||
for c in classifiers: | ||
x = c.split() | ||
if "Python" in x: | ||
versions.append(x[-1]) | ||
|
||
versions.sort(key=Version) | ||
print(versions[-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
Oops, something went wrong.