-
Notifications
You must be signed in to change notification settings - Fork 40
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* create tox lint environment with mypy * Fix: type error in units module * Fix: remove unused convert.py in tests * add stub for cppcore * add efel/*.pyi to MANIFEST.in * merge get_cpp_feature and _get_cpp_feature * type annotate _get_cpp_data * update CHANGELOG.md
- Loading branch information
Showing
10 changed files
with
97 additions
and
69 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 |
---|---|---|
|
@@ -4,3 +4,4 @@ include LICENSE.txt | |
include COPYING | ||
include COPYING.lesser | ||
include AUTHORS.txt | ||
include efel/*.pyi |
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,12 @@ | ||
def Initialize(depfilename: str, outfilename: str) -> int: ... | ||
def getFeature(feature_name: str, values: list) -> int: ... | ||
def getFeatureInt(feature_name: str, values: list[int]) -> int: ... | ||
def getFeatureDouble(feature_name: str, values: list[float]) -> int: ... | ||
def getMapIntData(data_name: str) -> list[int]: ... | ||
def getMapDoubleData(data_name: str) -> list[float]: ... | ||
def setFeatureInt(feature_name: str, values: list[int]) -> int: ... | ||
def setFeatureDouble(feature_name: str, values: list[float]) -> float: ... | ||
def setFeatureString(feature_name: str, value: str) -> int: ... | ||
def featuretype(feature_name: str) -> str: ... | ||
def getgError() -> str: ... | ||
def getFeatureNames(feature_names: list[str]) -> None: ... |
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 was deleted.
Oops, something went wrong.
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