We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Running the tests with python2.7 or python3, several of the test cases fail with the following warning in def _calc_segment_points():
def _calc_segment_points()
pos = np.rot90(np.array([z_pos, y_pos, x_pos]), axes=(1, 0)) E TypeError: rot90() got an unexpected keyword argument 'axes'
After some investigating, turns out the axes keyword is in the numpy v1.13 documentation, but not the numpy v1.11 documentation: relevant links:
axes
v1.11 v1.13
v1.11 is my default for Linux Mint 18.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Running the tests with python2.7 or python3, several of the test cases fail with the following warning in
def _calc_segment_points()
:After some investigating, turns out the
axes
keyword is in the numpy v1.13 documentation, but not the numpy v1.11 documentation: relevant links:v1.11
v1.13
v1.11 is my default for Linux Mint 18.
The text was updated successfully, but these errors were encountered: