-
Notifications
You must be signed in to change notification settings - Fork 16
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add vg.compat
forward-compatibilty layer for libraries
#158
Conversation
This is possible since `poetry` installs the project into the venv by default. It helps ensure that functions under test are properly exported in `__all__`.
vg.compat
compatibilty layer for libraries vg.compat
forward-compatibilty layer for libraries
stacks of inputs interchangeably. They return The Right Thing – a single | ||
result or a stack of results – without the need to reshape inputs or outputs. | ||
With the power of NumPy, the vectorized functions are fast. | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Why drop all of this documentation from the README?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
It's duplicated from the documentation, and that seems like a better place for it: https://vgpy.dev/
@@ -0,0 +1,21 @@ | |||
import numpy as np | |||
import pytest | |||
import vg.compat.v1 as vg |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
👍
# Conflicts: # doc/index.md
Closes #112
Depends on #157