-
Notifications
You must be signed in to change notification settings - Fork 49
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
36cbc29
commit 99fd8d8
Showing
12 changed files
with
125 additions
and
249 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 |
---|---|---|
|
@@ -5,5 +5,4 @@ coverage: | |
|
||
ignore: | ||
- "tests/*" | ||
- "benchmarks/*" | ||
- "docs/*" |
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,32 +1,8 @@ | ||
from .computations import cython_clip_vector | ||
from .computations import naive_cython_clip_vector | ||
from .computations import python_clip_vector | ||
from .dtypes import float32 | ||
from .dtypes import float64 | ||
from .dtypes import int8 | ||
from .dtypes import int16 | ||
from .dtypes import int32 | ||
from .dtypes import int64 | ||
from .dtypes import uint8 | ||
from .dtypes import uint16 | ||
from .dtypes import uint32 | ||
from .dtypes import uint64 | ||
from .vector import VectorND | ||
from .vector import Vector2D | ||
from .version import __version__ | ||
|
||
|
||
__all__ = [ | ||
'cython_clip_vector', | ||
'naive_cython_clip_vector', | ||
'python_clip_vector', | ||
'float32', | ||
'float64', | ||
'uint8', | ||
'int8', | ||
'uint16', | ||
'int16', | ||
'uint32', | ||
'int32', | ||
'uint64', | ||
'int64', | ||
'VectorND' | ||
'Vector2D' | ||
'__version__' | ||
] |
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 +1 @@ | ||
__version__ = '2.0.2' | ||
__version__ = '3.0.0' |
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 |
---|---|---|
|
@@ -6,7 +6,6 @@ pytest | |
codecov | ||
pytest-cov | ||
pre-commit | ||
pytest-benchmark | ||
|
||
# Linting/Tooling | ||
pylint | ||
|
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,4 +1,2 @@ | ||
# Runtime requirements | ||
numpy | ||
scipy | ||
Cython |
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.